blob: db52cef96492b2c4afb13ad8d2a24466980462c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
kind: pipeline
type: docker
name: linting
steps:
gitleaks:
image: zricethezav/gitleaks:latest
commands:
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
when:
event:
exclude:
- tag
|