Compare commits

...

10 Commits

Author SHA1 Message Date
Michael Grote a0fae8a9d6 sdfg 2024-02-06 20:13:05 +01:00
Michael Grote e008fe2823 ci: dont run on renovate updates 2024-02-06 20:12:38 +01:00
Michael Grote 14b225fb0a dfgd 2024-02-06 19:54:13 +01:00
Michael Grote 0a33ac18eb dfsgsd 2024-02-06 19:52:44 +01:00
Michael Grote 1c7c4630ee dsfgds 2024-02-06 19:48:55 +01:00
Michael Grote 5d7486fa32 t 2024-02-06 19:47:12 +01:00
Michael Grote b1218292fd sdfg 2024-02-06 19:45:06 +01:00
Michael Grote 437dfb7935 d 2024-02-06 19:42:59 +01:00
Michael Grote 04b3412504 sdfgsdf 2024-02-06 19:42:37 +01:00
Michael Grote ddc18803a8 f 2024-02-06 19:41:45 +01:00
2 changed files with 7 additions and 11 deletions

View File

@ -17,3 +17,6 @@ steps:
- ${CI_COMMIT_SHA:0:8}
- ${CI_COMMIT_BRANCH}
- latest
when:
- evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
...

View File

@ -5,23 +5,14 @@ steps:
commands:
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
when:
- evaluate: 'CI_PIPELINE_EVENT == "push" && CI_COMMIT_BRANCH == CI_REPO_DEFAULT_BRANCH'
- evaluate: 'CI_PIPELINE_EVENT == "pr"'
# when:
# branch:
# include: [master, master]
# exclude: [renovate/*]
- 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"
@ -33,4 +24,6 @@ steps:
shellcheck "$file_path"
fi
done
when:
- evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
...