diff options
| author | Michael Grote | 2024-05-14 21:45:22 +0200 |
|---|---|---|
| committer | Michael Grote | 2024-05-14 21:45:22 +0200 |
| commit | eb248a8db46265b9f5faa9b5e09bc167bd433dcc (patch) | |
| tree | a6277531a158da2494a417a77f1b745739bed757 /.woodpecker/lint.yml | |
| parent | 44de4eafd51c10e75603dd4ac1819d38422512c9 (diff) | |
ci: fix when cron
Diffstat (limited to '.woodpecker/lint.yml')
| -rw-r--r-- | .woodpecker/lint.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.woodpecker/lint.yml b/.woodpecker/lint.yml index 8d2307b..1f802f7 100644 --- a/.woodpecker/lint.yml +++ b/.woodpecker/lint.yml @@ -5,7 +5,7 @@ steps: commands: - gitleaks detect --no-git --verbose --source $CI_WORKSPACE when: - - event: [push, pull_request] + - event: [push, pull_request, cron] evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"' hadolint: @@ -13,7 +13,7 @@ steps: commands: - hadolint Dockerfile when: - - event: [push, pull_request] + - event: [push, pull_request, cron] evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"' shellcheck: @@ -27,6 +27,6 @@ steps: fi done when: - - event: [push, pull_request] + - event: [push, pull_request, cron] evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"' ... |