mirror of https://github.com/helm/helm
Merge 7f1867d436 into 3120e88f9b
commit
daf6bb33e4
@ -0,0 +1,26 @@
|
||||
name: Lint Bash Scripts
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- 'scripts/**.sh'
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'scripts/**.sh'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
shellcheck:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Run ShellCheck
|
||||
run: shellcheck ./scripts/**/*.sh
|
||||
Loading…
Reference in new issue