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
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Unreleased

.. vendor-insert-here
- Update vendored schemas: renovate, taskfile (2025-02-23)

0.31.2
------

Expand Down
9 changes: 9 additions & 0 deletions src/check_jsonschema/builtin_schemas/vendor/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -3045,6 +3045,15 @@
"description": "Path to the Server-side old private key.",
"type": "string"
},
"processEnv": {
"description": "Environment variables to be used in global config only.",
"type": "object",
"default": {},
"additionalProperties": {
"type": "string"
},
"$ref": "#"
},
"productLinks": {
"description": "Links which are used in PRs, issues and comments.",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
b927d2478e21f6bc423771ad88943933c9b6af2421dc29de4b247c93f0ec9555
62f681572cbb7f62690f245583e1ef6dab7d86e49767744c68748b9bdf5fa57a
Original file line number Diff line number Diff line change
@@ -1 +1 @@
e991e9f53f0615caf16c0777d9f38e5aa8243407283205110f3514d1375097ff
4ed69fa81667b77ee5e0146080dd73b376ee88ea5dd23e743644a495c7f35c80
31 changes: 26 additions & 5 deletions src/check_jsonschema/builtin_schemas/vendor/taskfile.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@
},
{
"$ref": "#/definitions/task_call"
},
{
"$ref": "#/definitions/defer_task_call"
},
{
"$ref": "#/definitions/defer_cmd_call"
}
]
}
Expand Down Expand Up @@ -216,7 +222,10 @@
"$ref": "#/definitions/task_call"
},
{
"$ref": "#/definitions/defer_call"
"$ref": "#/definitions/defer_task_call"
},
{
"$ref": "#/definitions/defer_cmd_call"
},
{
"$ref": "#/definitions/for_cmds_call"
Expand Down Expand Up @@ -350,15 +359,12 @@
"additionalProperties": false,
"required": ["cmd"]
},
"defer_call": {
"defer_task_call": {
"type": "object",
"properties": {
"defer": {
"description": "Run a command when the task completes. This command will run even when the task fails",
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/task_call"
}
Expand All @@ -368,6 +374,21 @@
"additionalProperties": false,
"required": ["defer"]
},
"defer_cmd_call": {
"type": "object",
"properties": {
"defer": {
"description": "Name of the command to defer",
"type": "string"
},
"silent": {
"description": "Hides task name and command from output. The command's output will still be redirected to `STDOUT` and `STDERR`.",
"type": "boolean"
}
},
"additionalProperties": false,
"required": ["defer"]
},
"for_cmds_call": {
"type": "object",
"properties": {
Expand Down