feat(ci): add gitleaks
This commit is contained in:
parent
17b46cfb1c
commit
9b5788ad9d
2 changed files with 20 additions and 0 deletions
18
.gitlab/gitleaks.yaml
Normal file
18
.gitlab/gitleaks.yaml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
|
||||
# gitleaks
|
||||
gitleaks:
|
||||
stage: "gitleaks"
|
||||
image:
|
||||
name: "ghcr.io/gitleaks/gitleaks:latest"
|
||||
variables:
|
||||
GIT_DEPTH: 1
|
||||
rules:
|
||||
|
||||
# run only on push to default branch
|
||||
- if: '$CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
||||
- when: "never"
|
||||
|
||||
# start linting
|
||||
script:
|
||||
- "gitleaks detect --source . --verbose --redact --max-decode-depth 1"
|
||||
Loading…
Add table
Add a link
Reference in a new issue