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
26 changes: 26 additions & 0 deletions public/api-schemas.json
Original file line number Diff line number Diff line change
Expand Up @@ -12992,6 +12992,32 @@
],
"title": "Max Retries"
},
"retries_before_run": {
"anyOf": [
{
"type": "integer",
"minimum": 0.0
},
{
"type": "null"
}
],
"title": "Retries Before Run",
"description": "How many checks retries preceded this run: 0 for a first attempt, 1 or more for a rerun after a failure (whose duration is a repeat attempt, not a nominal run). Distinct from `retry_attempt`, which concerns the retry abort event. Null on events persisted before this field existed."
},
"bisection_depth": {
"anyOf": [
{
"type": "integer",
"minimum": 0.0
},
{
"type": "null"
}
],
"title": "Bisection Depth",
"description": "How many splits of a failing batch this batch descends from: 0 for a batch checked as it was embarked, 1 or more for a sub-batch created while bisecting a failing batch (its run checks a reduced batch). Null on events persisted before this field existed."
},
"speculative_check_pull_request": {
"$ref": "#/components/schemas/Signals_SpeculativeCheckPullRequest"
},
Expand Down
4 changes: 2 additions & 2 deletions public/mergify-configuration-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4200,7 +4200,7 @@
}
],
"default": "auto",
"description": "The amount of time the merge queue waits for pending checks to return before dequeueing pull requests. This cannot be less than 60 seconds. Defaults to `auto`, which lets Mergify compute the timeout from the recent CI runtime of this queue (the 95th-percentile runtime with a safety margin); `auto` applies no timeout until enough history has been gathered. Set to `null` to disable the checks timeout entirely.",
"description": "The amount of time the merge queue waits for pending checks to return before dequeueing pull requests. This cannot be less than 60 seconds. Defaults to `auto`, which lets Mergify compute the timeout from the recent CI runtime of this queue (the 95th-percentile runtime with a safety margin). Runs identified as retry reruns or bisection runs are excluded from the calibration; runs whose provenance predates this tracking are kept for compatibility. `auto` applies no timeout until enough history has been gathered. Set to `null` to disable the checks timeout entirely.",
"title": "Checks Timeout"
},
"max_checks_retries": {
Expand Down Expand Up @@ -4468,7 +4468,7 @@
}
],
"default": "auto",
"description": "The amount of time the merge queue waits for pending checks to return before dequeueing pull requests. This cannot be less than 60 seconds. Defaults to `auto`, which lets Mergify compute the timeout from the recent CI runtime of this queue (the 95th-percentile runtime with a safety margin); `auto` applies no timeout until enough history has been gathered. Set to `null` to disable the checks timeout entirely.",
"description": "The amount of time the merge queue waits for pending checks to return before dequeueing pull requests. This cannot be less than 60 seconds. Defaults to `auto`, which lets Mergify compute the timeout from the recent CI runtime of this queue (the 95th-percentile runtime with a safety margin). Runs identified as retry reruns or bisection runs are excluded from the calibration; runs whose provenance predates this tracking are kept for compatibility. `auto` applies no timeout until enough history has been gathered. Set to `null` to disable the checks timeout entirely.",
"title": "Checks Timeout"
},
"max_checks_retries": {
Expand Down