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
1010
1111.. vendor-insert-here
1212
13+ - Update vendored schemas: renovate, taskfile (2025-02-23)
14+
13150.31.2
1416------
1517
Original file line number Diff line number Diff line change 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" ,
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 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 }
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"
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 }
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" : {
You can’t perform that action at this time.
0 commit comments