Skip to content

Harden CI workflows and sync commit guard range-check fixes #4

Harden CI workflows and sync commit guard range-check fixes

Harden CI workflows and sync commit guard range-check fixes #4

Workflow file for this run

name: ShellCheck
on:
push:
branches: [main]
paths:
- 'scripts/**.sh'
- '.githooks/**'
- '.github/workflows/shellcheck.yml'
pull_request:
paths:
- 'scripts/**.sh'
- '.githooks/**'
permissions:
contents: read
concurrency:
group: shellcheck-${{ github.ref }}
cancel-in-progress: true
jobs:
shellcheck:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Lint shell scripts (warning severity gate)
run: shellcheck -S warning scripts/*.sh