Skip to content

Commit 2417b99

Browse files
committed
Skip the new detect-serets stage
Signed-off-by: Leo Christy Jesuraj <[email protected]>
1 parent bb8b59c commit 2417b99

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.one-pipeline-archive.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,16 @@ setup:
3131
echo "${REPO} has been archived successfully to ${ARCHIVE_DESTINATION_REPO}"
3232
fi
3333
34+
detect-secrets:
35+
image: icr.io/continuous-delivery/pipeline/pipeline-base-ubi:3.12
36+
abort_on_failure: false
37+
image_pull_policy: IfNotPresent
38+
skip: true
39+
script: |
40+
#!/usr/bin/env bash
41+
echo "Skip detect-secrets"
42+
exit 0
43+
3444
test:
3545
dind: true
3646
abort_on_failure: false

.one-pipeline.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,16 @@ setup:
7878
fi
7979
fi
8080
81+
detect-secrets:
82+
image: icr.io/continuous-delivery/pipeline/pipeline-base-ubi:3.12
83+
abort_on_failure: false
84+
image_pull_policy: IfNotPresent
85+
skip: true
86+
script: |
87+
#!/usr/bin/env bash
88+
echo "Skipping detect-secrets as it's already run as part of code-compliance-checks"
89+
exit 0
90+
8191
test:
8292
dind: true
8393
abort_on_failure: true

0 commit comments

Comments
 (0)