From fbc99a8a0cc344f6ff3ffa19250551c2da9761f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torben=20B=C3=BChler?= Date: Thu, 29 Aug 2024 09:58:09 +0000 Subject: [PATCH] fix: add null as supported option in ci editor schema --- app/assets/javascripts/editor/schema/ci.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/assets/javascripts/editor/schema/ci.json b/app/assets/javascripts/editor/schema/ci.json index cddccef3819e2e..d872eb30cdef1b 100644 --- a/app/assets/javascripts/editor/schema/ci.json +++ b/app/assets/javascripts/editor/schema/ci.json @@ -196,7 +196,10 @@ }, "definitions": { "artifacts": { - "type": "object", + "type": [ + "object", + "null" + ], "markdownDescription": "Used to specify a list of files and directories that should be attached to the job if it succeeds. Artifacts are sent to Gitlab where they can be downloaded. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#artifacts).", "additionalProperties": false, "properties": { -- GitLab