diff --git a/pipeline/frontend/yaml/linter/schema/schema.json b/pipeline/frontend/yaml/linter/schema/schema.json index 026dda685..6b7a60d18 100644 --- a/pipeline/frontend/yaml/linter/schema/schema.json +++ b/pipeline/frontend/yaml/linter/schema/schema.json @@ -231,9 +231,6 @@ { "$ref": "#/definitions/commands_step" }, - { - "$ref": "#/definitions/entrypoint_step" - }, { "$ref": "#/definitions/plugin_step" } @@ -321,88 +318,6 @@ } } }, - "entrypoint_step": { - "description": "Every step of your pipeline executes arbitrary commands inside a specified docker container. Read more: https://woodpecker-ci.org/docs/usage/workflow-syntax#steps", - "type": "object", - "additionalProperties": false, - "required": ["image", "entrypoint"], - "properties": { - "name": { - "description": "The name of the step. Can be used if using the array style steps list.", - "type": "string" - }, - "image": { - "$ref": "#/definitions/step_image" - }, - "privileged": { - "$ref": "#/definitions/step_privileged" - }, - "pull": { - "$ref": "#/definitions/step_pull" - }, - "commands": { - "$ref": "#/definitions/step_commands" - }, - "environment": { - "$ref": "#/definitions/step_environment" - }, - "directory": { - "$ref": "#/definitions/step_directory" - }, - "secrets": { - "$ref": "#/definitions/step_secrets" - }, - "when": { - "$ref": "#/definitions/step_when" - }, - "volumes": { - "$ref": "#/definitions/step_volumes" - }, - "depends_on": { - "description": "Execute a step after another step has finished.", - "oneOf": [ - { - "type": "array", - "minLength": 1, - "items": { - "type": "string" - } - }, - { - "type": "string" - } - ] - }, - "detach": { - "description": "Detach a step to run in background until pipeline finishes. Read more: https://woodpecker-ci.org/docs/usage/services#detachment", - "type": "boolean" - }, - "failure": { - "description": "How to handle the failure of this step. Read more: https://woodpecker-ci.org/docs/usage/workflow-syntax#failure", - "type": "string", - "enum": ["fail", "ignore"], - "default": "fail" - }, - "backend_options": { - "$ref": "#/definitions/step_backend_options" - }, - "entrypoint": { - "description": "Defines container entrypoint.", - "oneOf": [ - { - "type": "array", - "minLength": 1, - "items": { - "type": "string" - } - }, - { - "type": "string" - } - ] - } - } - }, "plugin_step": { "description": "Plugins let you execute predefined functions in a more secure context. Read more: https://woodpecker-ci.org/docs/usage/plugins/overview", "type": "object",