Skip to content

Commit

Permalink
[vendor-schemas] automated update (#480)
Browse files Browse the repository at this point in the history
Co-authored-by: sirosen <1300022+sirosen@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and sirosen committed Aug 26, 2024
1 parent dd0f4fc commit 8dcc7bd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
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 (2024-08-25)

0.29.2
------

Expand Down
12 changes: 8 additions & 4 deletions src/check_jsonschema/builtin_schemas/vendor/buildkite.json
Original file line number Diff line number Diff line change
Expand Up @@ -968,7 +968,8 @@
"automatic": {
"anyOf": [
{
"type": "boolean"
"type": ["boolean", "string"],
"pattern": "^(true|false)$"
},
{
"$ref": "#/definitions/commonOptions/automaticRetry"
Expand All @@ -992,18 +993,21 @@
"description": "Whether to allow a job to be retried manually",
"anyOf": [
{
"type": "boolean"
"type": ["boolean", "string"],
"pattern": "^(true|false)$"
},
{
"type": "object",
"properties": {
"allowed": {
"type": "boolean",
"type": ["boolean", "string"],
"pattern": "^(true|false)$",
"description": "Whether or not this job can be retried manually",
"default": true
},
"permit_on_passed": {
"type": "boolean",
"type": ["boolean", "string"],
"pattern": "^(true|false)$",
"description": "Whether or not this job can be retried after it has passed",
"default": true
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
fc4099c34baf2b186d08170f54b97264b7c492fc5aab0f263234af3db9cf60d3
7b91fb4c29df17714b03eb0eb803a801f1d347b18fb12bc46be7038d46f220c5

0 comments on commit 8dcc7bd

Please sign in to comment.