Skip to content

Commit

Permalink
update schema json
Browse files Browse the repository at this point in the history
  • Loading branch information
semihbkgr committed Nov 21, 2024
1 parent 5f9f163 commit 755feb6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions website/static/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -614,14 +614,16 @@
"^.*$": {
"anyOf": [
{
"type": "string"
"type": "string",
"minLength": 1
},
{
"type": "object",
"properties": {
"taskfile": {
"description": "The path for the Taskfile or directory to be included. If a directory, Task will look for files named `Taskfile.yml` or `Taskfile.yaml` inside that directory. If a relative path, resolved relative to the directory containing the including Taskfile.",
"type": "string"
"type": "string",
"minLength": 1
},
"dir": {
"description": "The working directory of the included tasks when run.",
Expand Down Expand Up @@ -650,7 +652,8 @@
"description": "A set of variables to apply to the included Taskfile.",
"$ref": "#/definitions/vars"
}
}
},
"required": ["taskfile"]
}
]
}
Expand Down

0 comments on commit 755feb6

Please sign in to comment.