Skip to content

Commit

Permalink
chore(schema): generate
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Apr 15, 2024
1 parent 7d0c7b3 commit 6fdaf6e
Showing 1 changed file with 49 additions and 6 deletions.
55 changes: 49 additions & 6 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,19 +125,62 @@
"description": "Path to git mirrors folder"
}
},
"required": [
"dependenciesCachePath",
"mirrors",
"mirrorsPath"
],
"additionalProperties": false
},
"workflows": {
"type": "array",
"items": {
"anyOf": [
{
"not": {}
},
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Workflow name"
},
"steps": {
"type": "array",
"items": {
"type": "object",
"properties": {
"command": {
"type": "string",
"description": "Command to execute"
},
"args": {
"type": "array",
"items": {
"type": "string"
},
"description": "Command arguments"
}
},
"required": [
"command"
],
"additionalProperties": false
}
}
},
"required": [
"name",
"steps"
],
"additionalProperties": false
}
]
}
}
},
"required": [
"engine",
"project",
"build",
"buildkite"
"buildkite",
"workflows"
],
"additionalProperties": false,
"$schema": "https://json-schema.org/draft/2019-09/schema#"
Expand Down

0 comments on commit 6fdaf6e

Please sign in to comment.