9c5074608f
This patch should provide automated secret detection, preventing any
secrets from sneaking out unnoticed. This is part of GitLabs AutoDevOps
feature set.
Reference:
https://docs.gitlab.com/ee/user/application_security/secret_detection/index.html
f006fea310/lib/gitlab/ci/templates/Security/Secret-Detection.gitlab-ci.yml
14 lines
236 B
YAML
14 lines
236 B
YAML
---
|
|
include:
|
|
- template: Security/Secret-Detection.gitlab-ci.yml
|
|
|
|
image: registry.git.saibotk.de/saibotk.de/infrastructure-ci-container:latest
|
|
|
|
stages:
|
|
- lint
|
|
- test
|
|
|
|
ansible-lint:
|
|
stage: lint
|
|
script:
|
|
- ansible-lint *.yml
|