mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-25 11:21:02 +00:00
Fix schema with commands and entrypoint (#4065)
This commit is contained in:
parent
42e7d71680
commit
644f731327
1 changed files with 0 additions and 85 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue