Skip to content

Commit

Permalink
chore: sync Mergify JSON Schema files
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify-ci-bot authored and github-actions[bot] committed Nov 22, 2024
1 parent 8c404cd commit b439aa7
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 2 deletions.
18 changes: 17 additions & 1 deletion public/api-schemas.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
"summary": "Freezes merge queue",
"description": "Freezes the merge of the requested queue and the queues following it",
"operationId": "create_queue_freeze_repos__owner___repository__queue__queue_name__freeze_put",
"deprecated": true,
"security": [
{
"ApplicationAuth": []
Expand Down Expand Up @@ -220,6 +221,7 @@
"summary": "Unfreeze merge queue",
"description": "Unfreeze the specified merge queue",
"operationId": "delete_queue_freeze_repos__owner___repository__queue__queue_name__freeze_delete",
"deprecated": true,
"security": [
{
"ApplicationAuth": []
Expand Down Expand Up @@ -294,6 +296,7 @@
"summary": "Get queue freeze data",
"description": "Checks if the queue is frozen and get the queue freeze data",
"operationId": "get_queue_freeze_repos__owner___repository__queue__queue_name__freeze_get",
"deprecated": true,
"security": [
{
"ApplicationAuth": []
Expand Down Expand Up @@ -377,6 +380,7 @@
"summary": "Get the list of frozen queues",
"description": "Get the list of frozen queues inside the requested repository",
"operationId": "get_list_queue_freeze_repos__owner___repository__queues_freezes_get",
"deprecated": true,
"security": [
{
"ApplicationAuth": []
Expand Down Expand Up @@ -9043,12 +9047,18 @@
"format": "date-time",
"title": "Pause Date",
"description": "The date and time of the freeze"
},
"allow_checks_to_run": {
"type": "boolean",
"title": "Allow Checks To Run",
"description": "Whether or not merge queue speculative checks will be created for the duration of the queue pause"
}
},
"type": "object",
"required": [
"reason",
"pause_date"
"pause_date",
"allow_checks_to_run"
],
"title": "QueuePause"
},
Expand All @@ -9059,6 +9069,12 @@
"maxLength": 255,
"title": "Reason",
"description": "The reason of the queue pause"
},
"allow_checks_to_run": {
"type": "boolean",
"title": "Allow Checks To Run",
"description": "Whether or not merge queue speculative checks should still be created for the duration of the queue pause",
"default": false
}
},
"type": "object",
Expand Down
29 changes: 28 additions & 1 deletion public/mergify-configuration-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2069,6 +2069,14 @@
"description": "The GitHub login of the command author.",
"title": "Sender",
"type": "string"
},
"updates": {
"description": "The list of updates done on an opened pull request.",
"items": {
"$ref": "#/$defs/PullRequestHeadShaHistoryDict"
},
"title": "Updates",
"type": "array"
}
},
"required": [
Expand Down Expand Up @@ -2140,11 +2148,30 @@
"queue-merge-started-at",
"schedule",
"sender-permission",
"sender"
"sender",
"updates"
],
"title": "PullRequestAttributes",
"type": "object"
},
"PullRequestHeadShaHistoryDict": {
"properties": {
"head-sha": {
"title": "Head sha",
"type": "string"
},
"timestamp": {
"title": "Timestamp",
"type": "string"
}
},
"required": [
"head-sha",
"timestamp"
],
"title": "PullRequestHeadShaHistoryDict",
"type": "object"
},
"PullRequestRuleConditionsModel": {
"items": {
"anyOf": [
Expand Down

0 comments on commit b439aa7

Please sign in to comment.