mirror of
https://github.com/lunchcat/sif.git
synced 2026-06-30 18:16:37 -07:00
60431ce92d
Signed-off-by: vmfunc <celeste@linux.com>
23 lines
423 B
YAML
23 lines
423 B
YAML
name: shell check
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "**/*.sh"
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
shellcheck:
|
|
name: runner / shellcheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: shellcheck
|
|
uses: reviewdog/action-shellcheck@v1.27.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
reporter: github-pr-review
|