fix(ci): correct image digest separator
Some checks failed
CI / ci (push) Has been cancelled
Deploy / deploy (push) Has been cancelled

This commit is contained in:
2026-04-30 12:20:26 +02:00
parent ba4d3fc89d
commit ab6dabd542
232 changed files with 22956 additions and 2 deletions

View File

@@ -0,0 +1,28 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Epic Children",
"description": "Schema for the list of open child issue URLs belonging to an epic",
"type": "object",
"required": ["parent_url", "repo", "child_urls"],
"properties": {
"parent_url": {
"type": "string",
"format": "uri",
"description": "URL of the parent epic issue"
},
"repo": {
"type": "string",
"pattern": "^[^/]+/[^/]+$",
"description": "Repository in owner/repo format"
},
"child_urls": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"minItems": 1,
"description": "URLs of open child issues to implement"
}
}
}