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:
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
when:
- event: push
- event: pull_request
- evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
shellcheck:
@ -18,5 +20,7 @@ steps:
fi
done
when:
- event: push
- event: pull_request
- evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
...