Skip to content
Snippets Groups Projects
Commit 381c5d6a authored by Jose Raul Barreras's avatar Jose Raul Barreras
Browse files

add allow_failure to the Detect Secrets example

parent 0390b15f
No related branches found
No related tags found
4 merge requests!34develop to master,!18sync dependency-check with secrets-detection,!17Resolve "Add Dependency Check",!16Resolve "Add Automated Secrets Detection"
......@@ -27,4 +27,4 @@ This file is automatically updated after execute `git commit` based on the conte
- its-registry.unl.edu/unl-its/docker-ci/static-code-analysis:python
_Last update: Thu May 30 18:00:40 CDT 2019_
_Last update: Fri May 31 12:11:19 CDT 2019_
......
......@@ -10,7 +10,9 @@
## Detects secrets in the current project
- One 'analysis' stage with one job
- One 'analysis' stage with one job
- Allows the job to fail without impacting the rest of the CI (allow_failure: true)
``` yml
stages:
......@@ -21,6 +23,7 @@ variables:
- docker
script:
- docker run --rm -v "${PWD}:/work" -w /work its-registry.unl.edu/unl-its/docker-ci/detect-secrets -s -e 4.5
allow_failure: true
```
# Inline Allowlisting
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment