Skip to content

[gluon-next] Update to latest gluon / OpenWRT 24.10 #67

[gluon-next] Update to latest gluon / OpenWRT 24.10

[gluon-next] Update to latest gluon / OpenWRT 24.10 #67

Workflow file for this run

---
name: Shell Linting
on: # yamllint disable-line rule:truthy
workflow_dispatch:
push:
branches:
- 'gluon-*' # gluon-next and gluon-v202a.1.x
- '!gluon-v2021.1.x' # shell code is not maintained on this branch
paths:
- '**.sh'
pull_request:
paths:
- '**.sh'
jobs:
shellcheck:
name: runner / shellcheck
runs-on: ubuntu-latest
steps:
- name: Clone Firmware
uses: actions/checkout@v4 # v4
- name: shellcheck
# Make sure the action is pinned to a commit, as all reviewdog repos
# have hundreds of contributors with write access (breaks easy/often)
uses: reviewdog/action-shellcheck@50e5e1e2284575f23a1e409d9c0804cdfc4f6e31 # v1.18.1
with:
filter_mode: "file"
fail_on_error: true