Add CI for shellcheck

This commit is contained in:
itdoginfo
2025-10-12 16:25:03 +03:00
parent 55df0f283d
commit 7a2868b630

48
.github/workflows/shellcheck.yml vendored Normal file
View File

@@ -0,0 +1,48 @@
name: Differential ShellCheck
on:
push:
branches:
- main
- 'rc/**'
paths:
- '**.sh'
- 'podkop/files/usr/bin/**'
- 'podkop/files/usr/lib/**'
- '.github/workflows/shellcheck.yml'
pull_request:
branches:
- main
- 'rc/**'
paths:
- '**.sh'
- 'podkop/files/usr/bin/**'
- 'podkop/files/usr/lib/**'
- '.github/workflows/shellcheck.yml'
permissions:
contents: read
jobs:
shellcheck:
name: Differential ShellCheck
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v5.0.0
with:
fetch-depth: 0
- name: Differential ShellCheck
uses: redhat-plumbers-in-action/differential-shellcheck@v5.5.5
with:
severity: error
scan-directory: |
podkop/files/usr/bin/**
podkop/files/usr/lib/**
token: ${{ secrets.GITHUB_TOKEN }}