Skip to content
Snippets Groups Projects

Resolve "Add Automated Secrets Detection"

Merged Raul Barreras requested to merge 6-add-automated-secrets-detection into develop
1 file
+ 15
0
Compare changes
  • Side-by-side
  • Inline
+ 15
0
# Secrets detection example
## Detects secrets in the current project
- One 'analysis' stage with one job
``` yml
stages:
- analysis
variables:
stage: analysis
tags:
- docker
script:
- docker run --rm -v "${PWD}:/work" -w /work its-registry.unl.edu/unl-its/docker-ci/detect-secrets -s
```
Loading