Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion schema/action_stringdata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion schema/actions.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"enum": ["command", "docker"]
},
"args": {
"description": "The command to execute.",
"description": "The command and its argument to execute if \"type\" is \"command\", or a list of arguments to be passed to the Docker container if \"type\" is \"docker\".",
"type": "array",
"minItems": 1,
"items": {
Expand All @@ -47,6 +47,13 @@
"description": "The Docker image handle for running the container executing this step. Just like when running `docker run`, `args` here override the default `CMD` to be executed.",
"type": "string",
"minLength": 1
},
"cacheDirs": {
"description": "Names of directories to create in a temporary location and mount into each \"docker\" step container under the specified name.",
"type": "array",
"items": {
"type": "string"
}
}
},
"oneOf": [
Expand Down