nextcloud-cronjob/.woodpecker/lint.yml

33 lines
998 B
YAML
Raw Normal View History

2023-11-03 19:23:41 +01:00
---
steps:
gitleaks:
2024-02-07 15:12:52 +01:00
image: zricethezav/gitleaks:v8.18.2
2023-11-03 19:23:41 +01:00
commands:
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
when:
2024-05-14 21:44:53 +02:00
- event: [push, pull_request, cron]
2024-05-06 23:52:31 +02:00
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2023-11-03 19:31:52 +01:00
2023-11-03 19:23:41 +01:00
hadolint:
image: pipelinecomponents/hadolint:0.26.2
2023-11-03 19:23:41 +01:00
commands:
- hadolint Dockerfile
when:
2024-05-14 21:44:53 +02:00
- event: [push, pull_request, cron]
2024-05-06 23:52:31 +02:00
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2023-11-03 19:31:52 +01:00
2023-11-09 08:57:51 +01:00
shellcheck:
2024-04-04 20:22:46 +02:00
image: "koalaman/shellcheck-alpine:v0.10.0"
2023-11-09 08:57:51 +01:00
commands:
2024-01-29 12:24:56 +01:00
- |
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
2024-02-06 20:16:41 +01:00
when:
2024-05-14 21:44:53 +02:00
- event: [push, pull_request, cron]
2024-05-06 23:52:31 +02:00
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2024-01-29 12:24:56 +01:00
...