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

This commit is contained in:
Michael Grote 2024-05-06 23:31:51 +02:00
parent ef3374cb36
commit 8fb1612fbd

View file

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