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
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Unreleased

.. vendor-insert-here

- Update vendored schemas: azure-pipelines, drone-ci, gitlab-ci, meltano, mergify,
renovate, woodpecker-ci (2025-10-05)
- Update vendored schemas: azure-pipelines, bamboo-spec, buildkite, drone-ci,
github-workflows, gitlab-ci, meltano, mergify, renovate, woodpecker-ci (2025-10-12)

0.34.0
------
Expand Down
47 changes: 47 additions & 0 deletions src/check_jsonschema/builtin_schemas/vendor/bamboo-spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,10 @@
"period": {
"type": "integer"
},
"description": {
"type": "string",
"description": "Trigger description."
},
"conditions": {
"type": "array",
"items": {
Expand Down Expand Up @@ -573,6 +577,46 @@
]
}
}
},
"tag": {
"type": "object",
"additionalProperties": false,
"properties": {
"tag": {
"type": "object",
"description": "UNDOCUMENTED. Bamboo detects new tags in repository and builds for all these tags",
"properties": {
"filter": {
"type": "string",
"description": "Use a regular expression to only build for tag that match specific names."
},
"tagInBranch": {
"type": "boolean",
"description": "Only run build if the branch contains the matched tag. The build will be triggered only if the tag revision is in the vcs branch."
},
"description": {
"type": "string",
"description": "Trigger description."
},
"conditions": {
"type": "array",
"description": "Only run Build if other Plans are currently passing.",
"items": {
"type": "object",
"properties": {
"green-plan": {
"type": "array",
"items": {
"type": "string",
"description": "Plan Keys"
}
}
}
}
}
}
}
}
}
},
"items": {
Expand All @@ -586,6 +630,9 @@
{
"$ref": "#/definitions/triggers/definitions/remote"
},
{
"$ref": "#/definitions/triggers/definitions/tag"
},
{
"type": "string"
}
Expand Down
Loading