File tree Expand file tree Collapse file tree 5 files changed +39
-7
lines changed
src/check_jsonschema/builtin_schemas/vendor Expand file tree Collapse file tree 5 files changed +39
-7
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ Unreleased
10
10
11
11
.. vendor-insert-here
12
12
13
+ - Update vendored schemas: renovate, taskfile (2025-02-23)
14
+
13
15
0.31.2
14
16
------
15
17
Original file line number Diff line number Diff line change 3045
3045
"description" : " Path to the Server-side old private key." ,
3046
3046
"type" : " string"
3047
3047
},
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
+ },
3048
3057
"productLinks" : {
3049
3058
"description" : " Links which are used in PRs, issues and comments." ,
3050
3059
"type" : " object" ,
Original file line number Diff line number Diff line change 1
- b927d2478e21f6bc423771ad88943933c9b6af2421dc29de4b247c93f0ec9555
1
+ 62f681572cbb7f62690f245583e1ef6dab7d86e49767744c68748b9bdf5fa57a
Original file line number Diff line number Diff line change 1
- e991e9f53f0615caf16c0777d9f38e5aa8243407283205110f3514d1375097ff
1
+ 4ed69fa81667b77ee5e0146080dd73b376ee88ea5dd23e743644a495c7f35c80
Original file line number Diff line number Diff line change 29
29
},
30
30
{
31
31
"$ref" : " #/definitions/task_call"
32
+ },
33
+ {
34
+ "$ref" : " #/definitions/defer_task_call"
35
+ },
36
+ {
37
+ "$ref" : " #/definitions/defer_cmd_call"
32
38
}
33
39
]
34
40
}
216
222
"$ref" : " #/definitions/task_call"
217
223
},
218
224
{
219
- "$ref" : " #/definitions/defer_call"
225
+ "$ref" : " #/definitions/defer_task_call"
226
+ },
227
+ {
228
+ "$ref" : " #/definitions/defer_cmd_call"
220
229
},
221
230
{
222
231
"$ref" : " #/definitions/for_cmds_call"
350
359
"additionalProperties" : false ,
351
360
"required" : [" cmd" ]
352
361
},
353
- "defer_call " : {
362
+ "defer_task_call " : {
354
363
"type" : " object" ,
355
364
"properties" : {
356
365
"defer" : {
357
366
"description" : " Run a command when the task completes. This command will run even when the task fails" ,
358
367
"anyOf" : [
359
- {
360
- "type" : " string"
361
- },
362
368
{
363
369
"$ref" : " #/definitions/task_call"
364
370
}
368
374
"additionalProperties" : false ,
369
375
"required" : [" defer" ]
370
376
},
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
+ },
371
392
"for_cmds_call" : {
372
393
"type" : " object" ,
373
394
"properties" : {
You can’t perform that action at this time.
0 commit comments