1
0
mirror of https://github.com/tommytran732/Arch-Setup-Script synced 2024-09-18 14:44:43 -04:00
Arch-Setup-Script/.github/workflows/shellcheck.yml
Tommy 9f56c5b0e2
Add permission control for workflow
Signed-off-by: Tommy <contact@tommytran.io>
2024-09-10 16:23:03 -07:00

40 lines
712 B
YAML

name: ShellCheck
on:
workflow_dispatch:
push:
branches:
- master
- main
paths-ignore:
- '**.gitignore'
- '**.md'
- 'LICENSE'
- '**.conf'
- '**.service'
- '**.timer'
- '**.path'
- '**.list'
pull_request:
paths-ignore:
- '**.gitignore'
- '**.md'
- 'LICENSE'
- '**.conf'
- '**.service'
- '**.timer'
- '**.path'
- '**.list'
jobs:
shellcheck:
name: Shell syntax checker
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master