ci: fix when cron
All checks were successful
ci/woodpecker/push/lint Pipeline was successful

This commit is contained in:
Michael Grote 2024-05-14 21:45:46 +02:00
parent 5de530903e
commit dfef05156c

View file

@ -5,7 +5,7 @@ steps:
commands: commands:
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE - gitleaks detect --no-git --verbose --source $CI_WORKSPACE
when: when:
- event: [push, pull_request] - event: [push, pull_request, cron]
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"' evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
shellcheck: shellcheck:
@ -19,6 +19,6 @@ steps:
fi fi
done done
when: when:
- event: [push, pull_request] - event: [push, pull_request, cron]
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"' evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
... ...