mirror of
https://github.com/actions/runner-images.git
synced 2025-12-25 19:11:28 +08:00
43 lines
876 B
JSON
43 lines
876 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"patternProperties": {
|
|
"^.*$": {
|
|
"if": {
|
|
"type": "object",
|
|
"required": [
|
|
"version"
|
|
],
|
|
"properties": {
|
|
"version": {
|
|
"type": "string",
|
|
"pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+.*$"
|
|
}
|
|
}
|
|
},
|
|
"then": {
|
|
"required": [
|
|
"pinnedDetails"
|
|
],
|
|
"properties": {
|
|
"pinnedDetails": {
|
|
"type": "object",
|
|
"properties": {
|
|
"reason": {
|
|
"type": "string"
|
|
},
|
|
"link": {
|
|
"type": "string"
|
|
},
|
|
"review-at": {
|
|
"type": "string",
|
|
"format": "date"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|