From 8882ebcdbdb61631052ef5ab59a4388ec5373583 Mon Sep 17 00:00:00 2001 From: qwerty287 <80460567+qwerty287@users.noreply.github.com> Date: Sun, 10 Nov 2024 17:38:55 +0200 Subject: [PATCH] Remove `secrets` from schema (#4345) Co-authored-by: Patrick Schratz --- pipeline/frontend/yaml/linter/schema/schema.json | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/pipeline/frontend/yaml/linter/schema/schema.json b/pipeline/frontend/yaml/linter/schema/schema.json index 6128ce15b..fa30b11f0 100644 --- a/pipeline/frontend/yaml/linter/schema/schema.json +++ b/pipeline/frontend/yaml/linter/schema/schema.json @@ -286,9 +286,6 @@ "directory": { "$ref": "#/definitions/step_directory" }, - "secrets": { - "$ref": "#/definitions/step_secrets" - }, "when": { "$ref": "#/definitions/step_when" }, @@ -616,14 +613,6 @@ "type": ["boolean", "string", "number", "array", "object"] } }, - "step_secrets": { - "description": "Pass secrets to a pipeline step at runtime. Read more: https://woodpecker-ci.org/docs/usage/secrets", - "type": "array", - "items": { - "type": "string" - }, - "minLength": 1 - }, "step_settings": { "description": "Change the settings of your plugin. Read more: https://woodpecker-ci.org/docs/usage/plugins/overview", "type": "object", @@ -845,9 +834,6 @@ "directory": { "$ref": "#/definitions/step_directory" }, - "secrets": { - "$ref": "#/definitions/step_secrets" - }, "settings": { "$ref": "#/definitions/step_settings" },