Skip to content

Commit 9d58794

Browse files
[vendor-schemas] automated update (#529)
Co-authored-by: sirosen <[email protected]>
1 parent 6a01bef commit 9d58794

File tree

5 files changed

+39
-7
lines changed

5 files changed

+39
-7
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Unreleased
1010

1111
.. vendor-insert-here
1212
13+
- Update vendored schemas: renovate, taskfile (2025-02-23)
14+
1315
0.31.2
1416
------
1517

src/check_jsonschema/builtin_schemas/vendor/renovate.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3045,6 +3045,15 @@
30453045
"description": "Path to the Server-side old private key.",
30463046
"type": "string"
30473047
},
3048+
"processEnv": {
3049+
"description": "Environment variables to be used in global config only.",
3050+
"type": "object",
3051+
"default": {},
3052+
"additionalProperties": {
3053+
"type": "string"
3054+
},
3055+
"$ref": "#"
3056+
},
30483057
"productLinks": {
30493058
"description": "Links which are used in PRs, issues and comments.",
30503059
"type": "object",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b927d2478e21f6bc423771ad88943933c9b6af2421dc29de4b247c93f0ec9555
1+
62f681572cbb7f62690f245583e1ef6dab7d86e49767744c68748b9bdf5fa57a
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e991e9f53f0615caf16c0777d9f38e5aa8243407283205110f3514d1375097ff
1+
4ed69fa81667b77ee5e0146080dd73b376ee88ea5dd23e743644a495c7f35c80

src/check_jsonschema/builtin_schemas/vendor/taskfile.json

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@
2929
},
3030
{
3131
"$ref": "#/definitions/task_call"
32+
},
33+
{
34+
"$ref": "#/definitions/defer_task_call"
35+
},
36+
{
37+
"$ref": "#/definitions/defer_cmd_call"
3238
}
3339
]
3440
}
@@ -216,7 +222,10 @@
216222
"$ref": "#/definitions/task_call"
217223
},
218224
{
219-
"$ref": "#/definitions/defer_call"
225+
"$ref": "#/definitions/defer_task_call"
226+
},
227+
{
228+
"$ref": "#/definitions/defer_cmd_call"
220229
},
221230
{
222231
"$ref": "#/definitions/for_cmds_call"
@@ -350,15 +359,12 @@
350359
"additionalProperties": false,
351360
"required": ["cmd"]
352361
},
353-
"defer_call": {
362+
"defer_task_call": {
354363
"type": "object",
355364
"properties": {
356365
"defer": {
357366
"description": "Run a command when the task completes. This command will run even when the task fails",
358367
"anyOf": [
359-
{
360-
"type": "string"
361-
},
362368
{
363369
"$ref": "#/definitions/task_call"
364370
}
@@ -368,6 +374,21 @@
368374
"additionalProperties": false,
369375
"required": ["defer"]
370376
},
377+
"defer_cmd_call": {
378+
"type": "object",
379+
"properties": {
380+
"defer": {
381+
"description": "Name of the command to defer",
382+
"type": "string"
383+
},
384+
"silent": {
385+
"description": "Hides task name and command from output. The command's output will still be redirected to `STDOUT` and `STDERR`.",
386+
"type": "boolean"
387+
}
388+
},
389+
"additionalProperties": false,
390+
"required": ["defer"]
391+
},
371392
"for_cmds_call": {
372393
"type": "object",
373394
"properties": {

0 commit comments

Comments
 (0)