homeserver/.woodpecker/gitleaks.yml

11 lines
267 B
YAML
Raw Normal View History

---
steps:
gitleaks:
2024-02-07 15:17:02 +01:00
image: zricethezav/gitleaks:v8.18.2
commands:
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
when:
2024-05-14 21:45:36 +02:00
- event: [push, pull_request, cron]
2024-05-06 23:36:28 +02:00
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2024-02-06 21:03:15 +01:00
...