ci: fix when cron

This commit is contained in:
Michael Grote 2024-05-14 21:45:46 +02:00 committed by Michael Grote
parent 90da03c7f6
commit 2ab19ee552

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"'
... ...