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>2024-01-04 15:19:41 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2024-01-04 15:19:41 +0300
commitac72b79188a14a28eafe55d32641f9939cf5d9c4 (patch)
treed6f6f349fb30017a600ebdee07b832889615978e /app/assets
parent8f89276d8498f45459bca67493eccd1bdf055330 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/javascripts/editor/schema/ci.json12
1 files changed, 11 insertions, 1 deletions
diff --git a/app/assets/javascripts/editor/schema/ci.json b/app/assets/javascripts/editor/schema/ci.json
index 1fb68394912..63c1ccb36da 100644
--- a/app/assets/javascripts/editor/schema/ci.json
+++ b/app/assets/javascripts/editor/schema/ci.json
@@ -944,7 +944,8 @@
},
"workflowAutoCancel": {
"type": "object",
- "markdownDescription": "Define the rules for when pipeline should be automatically cancelled.",
+ "description": "Define the rules for when pipeline should be automatically cancelled.",
+ "additionalProperties": false,
"properties": {
"on_job_failure": {
"markdownDescription": "Define which jobs to stop after a job fails.",
@@ -954,6 +955,15 @@
"none",
"all"
]
+ },
+ "on_new_commit": {
+ "markdownDescription": "Configure the behavior of the auto-cancel redundant pipelines feature. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#workflowauto_cancelon_new_commit)",
+ "type": "string",
+ "enum": [
+ "conservative",
+ "interruptible",
+ "none"
+ ]
}
}
},