httpd/.gitea/workflows/shellcheck.yaml
Michael Grote 59bc18b8b9
Some checks failed
gitleaks / gitleaks (push) Failing after 3s
move shellcheck
2024-08-27 21:25:50 +02:00

23 lines
607 B
YAML

name: gitleaks
on:
push:
branches: [ master ]
pull_request:
jobs:
gitleaks:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run shellcheck
uses: docker://koalaman/shellcheck-alpine:v0.10.0
with:
args: |
find . -type f -not -path './.git/*' -not -path './collections/*' -exec file {} \; | while IFS= read -r line; do
if echo "$line" | grep -q "shell script"; then
file_path=$(echo "$line" | awk -F':' '{print $1}')
shellcheck "$file_path"
fi
done