aboutsummaryrefslogtreecommitdiffstats
path: root/.woodpecker
diff options
context:
space:
mode:
authorMichael Grote2024-02-06 20:17:01 +0100
committerMichael Grote2024-02-06 20:17:01 +0100
commit376de2ed5400b3eff7220d70452cd43785f6310d (patch)
treeb89dcb1231bda1e176ad7d479d1c72515bbaa1eb /.woodpecker
parenta59ae4da201f5e673408ac6c5d40e52bb09a92c6 (diff)
ci: dont run on renovate updates
Diffstat (limited to '.woodpecker')
-rw-r--r--.woodpecker/build.yml3
-rw-r--r--.woodpecker/lint.yml10
2 files changed, 7 insertions, 6 deletions
diff --git a/.woodpecker/build.yml b/.woodpecker/build.yml
index 85ad6c0..fa55453 100644
--- a/.woodpecker/build.yml
+++ b/.woodpecker/build.yml
@@ -17,3 +17,6 @@ steps:
- ${CI_COMMIT_SHA:0:8}
- ${CI_COMMIT_BRANCH}
- latest
+ when:
+ - evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
+ ...
diff --git a/.woodpecker/lint.yml b/.woodpecker/lint.yml
index 71ad99d..ba60b51 100644
--- a/.woodpecker/lint.yml
+++ b/.woodpecker/lint.yml
@@ -5,18 +5,14 @@ steps:
commands:
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
when:
- event:
- exclude:
- - tag
+ - evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
hadolint:
image: pipelinecomponents/hadolint:0.26.0@sha256:7122937006c7a9bcbb78ce764d3c2f0092f183b843ad128bc9fd6ea918e22d5b
commands:
- hadolint Dockerfile
when:
- event:
- exclude:
- - tag
+ - evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
shellcheck:
image: "koalaman/shellcheck-alpine:latest@sha256:7b0682c5786633fc075f69852e5c7521767e8dcb512c43cf8041b022bdc98198"
@@ -28,4 +24,6 @@ steps:
shellcheck "$file_path"
fi
done
+ when:
+ - evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
...