From 45e3758ce3e703020f96ab7a578bc45e9c97f79c Mon Sep 17 00:00:00 2001 From: maze Date: Thu, 4 Sep 2025 14:27:11 +0200 Subject: [PATCH] Enable SAST, Secrets Detection, etc. --- .gitlab-ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..8ca1b16 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,24 @@ +stages: +- build +- test +- deploy +- review +- dast +- staging +- canary +- production +- incremental rollout 10% +- incremental rollout 25% +- incremental rollout 50% +- incremental rollout 100% +- performance +- cleanup +- secret-detection +sast: + stage: test +include: +- template: Auto-DevOps.gitlab-ci.yml +variables: + SECRET_DETECTION_ENABLED: 'true' +secret_detection: + stage: secret-detection \ No newline at end of file