-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: add mergify * add backport for v0.11.x
- Loading branch information
1 parent
6a29994
commit 26d1ab1
Showing
1 changed file
with
44 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,44 @@ | ||
queue_rules: | ||
- name: default | ||
conditions: | ||
- "#approved-reviews-by>=1" | ||
- base=master | ||
- label=automerge | ||
|
||
pull_request_rules: | ||
- name: automerge to main with label automerge and branch protection passing | ||
conditions: | ||
- "#approved-reviews-by>=1" | ||
- base=main | ||
- label=automerge | ||
actions: | ||
queue: | ||
name: default | ||
method: squash | ||
commit_message_template: | | ||
{{ title }} (#{{ number }}) | ||
{{ body }} | ||
- name: backport patches to release/v0.9.x branch | ||
conditions: | ||
- base=main | ||
- label=backport:v0.9.x | ||
actions: | ||
backport: | ||
branches: | ||
- release/v0.9.x | ||
- name: backport patches to release/v0.10.x branch | ||
conditions: | ||
- base=main | ||
- label=backport:v0.10.x | ||
actions: | ||
backport: | ||
branches: | ||
- release/v0.10.x | ||
- name: backport patches to release/v0.11.x branch | ||
conditions: | ||
- base=main | ||
- label=backport:v0.11.x | ||
actions: | ||
backport: | ||
branches: | ||
- release/v0.11.x |