Skip to content

Commit c2f3368

Browse files
mergify-ci-botgithub-actions[bot]
authored andcommitted
chore: sync Mergify JSON Schema files
1 parent f298ea2 commit c2f3368

File tree

1 file changed

+120
-0
lines changed

1 file changed

+120
-0
lines changed

public/api-schemas.json

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1232,6 +1232,7 @@
12321232
"action.post_check",
12331233
"action.queue.change",
12341234
"action.queue.checks_end",
1235+
"action.queue.checks_not_started",
12351236
"action.queue.checks_start",
12361237
"action.queue.enter",
12371238
"action.queue.leave",
@@ -5666,6 +5667,122 @@
56665667
],
56675668
"title": "EventQueueChecksEndMetadata"
56685669
},
5670+
"EventQueueChecksNotStarted": {
5671+
"properties": {
5672+
"id": {
5673+
"type": "integer",
5674+
"title": "Id"
5675+
},
5676+
"received_at": {
5677+
"type": "string",
5678+
"format": "date-time",
5679+
"title": "Received At"
5680+
},
5681+
"trigger": {
5682+
"type": "string",
5683+
"title": "Trigger"
5684+
},
5685+
"repository": {
5686+
"type": "string",
5687+
"title": "Repository"
5688+
},
5689+
"pull_request": {
5690+
"anyOf": [
5691+
{
5692+
"type": "integer"
5693+
},
5694+
{
5695+
"type": "null"
5696+
}
5697+
],
5698+
"title": "Pull Request"
5699+
},
5700+
"base_ref": {
5701+
"anyOf": [
5702+
{
5703+
"type": "string"
5704+
},
5705+
{
5706+
"type": "null"
5707+
}
5708+
],
5709+
"title": "Base Ref"
5710+
},
5711+
"type": {
5712+
"type": "string",
5713+
"const": "action.queue.checks_not_started",
5714+
"title": "Type"
5715+
},
5716+
"metadata": {
5717+
"$ref": "#/components/schemas/EventQueueChecksNotStartedMetadata"
5718+
}
5719+
},
5720+
"type": "object",
5721+
"required": [
5722+
"id",
5723+
"received_at",
5724+
"trigger",
5725+
"repository",
5726+
"pull_request",
5727+
"base_ref",
5728+
"type",
5729+
"metadata"
5730+
],
5731+
"title": "EventQueueChecksNotStarted"
5732+
},
5733+
"EventQueueChecksNotStartedMetadata": {
5734+
"properties": {
5735+
"branch": {
5736+
"type": "string",
5737+
"title": "Branch"
5738+
},
5739+
"partition_name": {
5740+
"anyOf": [
5741+
{
5742+
"type": "string"
5743+
},
5744+
{
5745+
"type": "null"
5746+
}
5747+
],
5748+
"title": "Partition Name"
5749+
},
5750+
"priority_rule_name": {
5751+
"anyOf": [
5752+
{
5753+
"type": "string"
5754+
},
5755+
{
5756+
"type": "null"
5757+
}
5758+
],
5759+
"title": "Priority Rule Name"
5760+
},
5761+
"queue_name": {
5762+
"type": "string",
5763+
"title": "Queue Name"
5764+
},
5765+
"queued_at": {
5766+
"type": "string",
5767+
"format": "date-time",
5768+
"title": "Queued At"
5769+
},
5770+
"reason": {
5771+
"type": "string",
5772+
"title": "Reason"
5773+
}
5774+
},
5775+
"type": "object",
5776+
"required": [
5777+
"branch",
5778+
"partition_name",
5779+
"priority_rule_name",
5780+
"queue_name",
5781+
"queued_at",
5782+
"reason"
5783+
],
5784+
"title": "EventQueueChecksNotStartedMetadata"
5785+
},
56695786
"EventQueueChecksStart": {
56705787
"properties": {
56715788
"id": {
@@ -7279,6 +7396,9 @@
72797396
{
72807397
"$ref": "#/components/schemas/EventQueueChecksEnd"
72817398
},
7399+
{
7400+
"$ref": "#/components/schemas/EventQueueChecksNotStarted"
7401+
},
72827402
{
72837403
"$ref": "#/components/schemas/EventQueueMerged"
72847404
},

0 commit comments

Comments
 (0)