dotfiles/.woodpecker/lint.yml

29 lines
896 B
YAML
Raw Normal View History

2024-05-06 22:52:05 +02:00
---
steps:
gitleaks:
image: zricethezav/gitleaks:v8.18.2
commands:
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
when:
2024-05-06 23:31:51 +02:00
- event: push
2024-05-06 23:33:30 +02:00
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2024-05-06 23:31:51 +02:00
- event: pull_request
2024-05-06 23:33:30 +02:00
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2024-05-06 22:52:05 +02:00
shellcheck:
image: "koalaman/shellcheck-alpine:v0.10.0"
commands:
- |
2024-05-06 22:53:33 +02:00
find . -type f -not -path './.git/*' -exec file {} \; | while IFS= read -r line; do
2024-05-06 22:52:05 +02:00
if echo "$line" | grep -q "shell script"; then
file_path=$(echo "$line" | awk -F':' '{print $1}')
shellcheck "$file_path"
fi
done
when:
2024-05-06 23:31:51 +02:00
- event: push
2024-05-06 23:33:30 +02:00
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2024-05-06 23:31:51 +02:00
- event: pull_request
2024-05-06 23:33:30 +02:00
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2024-05-06 22:52:05 +02:00
...