Skip to content

Commit 8dcc7bd

Browse files
[vendor-schemas] automated update (#480)
Co-authored-by: sirosen <[email protected]>
1 parent dd0f4fc commit 8dcc7bd

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
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 (2024-08-25)
14+
1315
0.29.2
1416
------
1517

src/check_jsonschema/builtin_schemas/vendor/buildkite.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -968,7 +968,8 @@
968968
"automatic": {
969969
"anyOf": [
970970
{
971-
"type": "boolean"
971+
"type": ["boolean", "string"],
972+
"pattern": "^(true|false)$"
972973
},
973974
{
974975
"$ref": "#/definitions/commonOptions/automaticRetry"
@@ -992,18 +993,21 @@
992993
"description": "Whether to allow a job to be retried manually",
993994
"anyOf": [
994995
{
995-
"type": "boolean"
996+
"type": ["boolean", "string"],
997+
"pattern": "^(true|false)$"
996998
},
997999
{
9981000
"type": "object",
9991001
"properties": {
10001002
"allowed": {
1001-
"type": "boolean",
1003+
"type": ["boolean", "string"],
1004+
"pattern": "^(true|false)$",
10021005
"description": "Whether or not this job can be retried manually",
10031006
"default": true
10041007
},
10051008
"permit_on_passed": {
1006-
"type": "boolean",
1009+
"type": ["boolean", "string"],
1010+
"pattern": "^(true|false)$",
10071011
"description": "Whether or not this job can be retried after it has passed",
10081012
"default": true
10091013
},
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
fc4099c34baf2b186d08170f54b97264b7c492fc5aab0f263234af3db9cf60d3
1+
7b91fb4c29df17714b03eb0eb803a801f1d347b18fb12bc46be7038d46f220c5

0 commit comments

Comments
 (0)