diff options
author | Ash McKenzie <amckenzie@gitlab.com> | 2020-11-18 00:53:34 +0000 |
---|---|---|
committer | Ash McKenzie <amckenzie@gitlab.com> | 2020-11-18 00:53:34 +0000 |
commit | d35ec21259b30a266393f86d57ba88fe71ed67fe (patch) | |
tree | 4f527ab02d6c204590c5ed9c806bf77beb55e922 | |
parent | 3f9890ef73dced430d86801a1efc0e93ec50890e (diff) | |
parent | 25ace8169bd922b4c9a0b4bb811513d392035d8d (diff) | |
download | gitlab-shell-d35ec21259b30a266393f86d57ba88fe71ed67fe.tar.gz |
Merge branch 'ci-enable-secret-detection' into 'master'
Enable Secret Detection in CI
See merge request gitlab-org/gitlab-shell!434
-rw-r--r-- | .gitlab-ci.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 72c171f..b2591e2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,7 @@ include: - template: Code-Quality.gitlab-ci.yml - template: Security/SAST.gitlab-ci.yml - template: Security/Dependency-Scanning.gitlab-ci.yml + - template: Security/Secret-Detection.gitlab-ci.yml variables: DOCKER_VERSION: "19.03.0" @@ -88,3 +89,7 @@ gemnasium-dependency_scanning: bundler-audit-dependency_scanning: rules: *workflow_rules + +# Secret Detection +secret_detection: + rules: *workflow_rules |