-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into sync-height-limit-test
- Loading branch information
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
queue_rules: | ||
- name: urgent | ||
speculative_checks: 2 | ||
batch_size: 2 | ||
conditions: | ||
- check-success=CI | ||
- check-success=Coverage | ||
- check-success=pull-request | ||
|
||
- name: medium | ||
speculative_checks: 2 | ||
batch_size: 3 | ||
conditions: | ||
- check-success=CI | ||
- check-success=Coverage | ||
- check-success=pull-request | ||
|
||
- name: default | ||
speculative_checks: 2 | ||
batch_size: 4 | ||
conditions: | ||
- check-success=CI | ||
- check-success=Coverage | ||
- check-success=pull-request | ||
|
||
pull_request_rules: | ||
- name: automatic update for PR marked as “Ready-to-Go“ | ||
conditions: | ||
- -conflict # skip PRs with conflicts | ||
- -draft # filter-out GH draft PRs | ||
actions: | ||
update: | ||
|
||
- name: move to critical queue when CI passes with 1 review and not WIP targeting main | ||
conditions: | ||
- "#approved-reviews-by>=1" | ||
- -draft | ||
- base=main | ||
- check-success=CI | ||
- check-success=Coverage | ||
- "label~=^P-Critical" | ||
- label!=do-not-merge | ||
actions: | ||
queue: | ||
name: urgent | ||
|
||
- name: move to high queue when CI passes with 1 review and not WIP targeting main | ||
conditions: | ||
- "#approved-reviews-by>=1" | ||
- -draft | ||
- base=main | ||
- check-success=CI | ||
- check-success=Coverage | ||
- "label~=^P-High" | ||
- label!=do-not-merge | ||
actions: | ||
queue: | ||
name: medium | ||
|
||
- name: move to default queue when CI passes with 1 review and not WIP targeting main | ||
conditions: | ||
- "#approved-reviews-by>=1" | ||
- -draft | ||
- base=main | ||
- check-success=CI | ||
- check-success=Coverage | ||
- "-label~=^P-High" | ||
- "-label~=^P-Critical" | ||
- label!=do-not-merge | ||
actions: | ||
queue: | ||
name: default |