name: Actionlint # Lints the GitHub Actions workflow YAML on every change so a malformed # workflow / bad action ref / missing-permission bug is caught before it ships # a broken pipeline. gbrain edits .github/workflows/* often (sharding, cache, # timeouts); this is the cheap guard that keeps those edits honest. on: push: branches: [master] paths: - '.github/workflows/**' pull_request: branches: [master] paths: - '.github/workflows/**' workflow_dispatch: permissions: contents: read concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true jobs: actionlint: runs-on: ubuntu-latest timeout-minutes: 5 steps: - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4 - uses: rhysd/actionlint@393031adb9afb225ee52ae2ccd7a5af5525e03e8 # v1.7.11