Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-08-19 06:10:47 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-08-19 06:10:47 +0300
commitfca4c56c94bbba41a1cf8a963761b69173b4fd63 (patch)
tree33411e3852caeacfb3fb00396fc90b0c62964ed1 /app/models/concerns/enums
parent122ed7ce8c6fd1e433933b4d397d3f4ed4269c49 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/models/concerns/enums')
-rw-r--r--app/models/concerns/enums/ci/pipeline.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/models/concerns/enums/ci/pipeline.rb b/app/models/concerns/enums/ci/pipeline.rb
index a7069b22f7c..94d11c871ca 100644
--- a/app/models/concerns/enums/ci/pipeline.rb
+++ b/app/models/concerns/enums/ci/pipeline.rb
@@ -38,7 +38,8 @@ module Enums
external_pull_request_event: 11,
parent_pipeline: 12,
ondemand_dast_scan: 13,
- ondemand_dast_validation: 14
+ ondemand_dast_validation: 14,
+ security_orchestration_policy: 15
}
end
@@ -52,7 +53,7 @@ module Enums
# - when an ondemand_dast_validation pipeline runs it is for validating a DAST site
# profile and should not affect the ref CI status.
def self.dangling_sources
- sources.slice(:webide, :parent_pipeline, :ondemand_dast_scan, :ondemand_dast_validation)
+ sources.slice(:webide, :parent_pipeline, :ondemand_dast_scan, :ondemand_dast_validation, :security_orchestration_policy)
end
# CI sources are those pipeline events that affect the CI status of the ref