Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ Unreleased

.. vendor-insert-here

- Update vendored schemas: buildkite, circle-ci, dependabot, github-workflows,
gitlab-ci, mergify, readthedocs, renovate, woodpecker-ci (2026-03-25)

0.37.0
------

Expand Down
2 changes: 2 additions & 0 deletions src/check_jsonschema/builtin_schemas/vendor/buildkite.json
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,8 @@
"type": "string",
"description": "A unique identifier for a step, must not resemble a UUID",
"examples": ["deploy-staging", "test-integration"],
"maxLength": 100,
"pattern": "^[a-zA-Z0-9_\\-:]+$",
"not": {
"pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"
}
Expand Down
8 changes: 6 additions & 2 deletions src/check_jsonschema/builtin_schemas/vendor/circle-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -2165,9 +2165,12 @@
{
"const": "not_run"
},
{
"const": "unauthorized"
},
{
"const": "terminal",
"markdownDescription": "Shorthand for `[success, failed, canceled, not_run]` - matches when the upstream job has reached any terminal state."
"markdownDescription": "Shorthand for `[success, failed, canceled, unauthorized, not_run]` - matches when the upstream job has reached any terminal state."
}
]
},
Expand All @@ -2180,7 +2183,8 @@
"success",
"failed",
"canceled",
"not_run"
"not_run",
"unauthorized"
]
}
}
Expand Down
Loading
Loading