2021-11-25 11:06:30 +00:00
|
|
|
queue_rules:
|
|
|
|
- name: default
|
|
|
|
conditions:
|
|
|
|
- "#approved-reviews-by>1"
|
|
|
|
|
2020-11-24 15:43:08 +00:00
|
|
|
pull_request_rules:
|
2022-06-19 09:43:41 +00:00
|
|
|
- name: automerge to main with label "automerge" and branch protection passing
|
2020-11-24 15:43:08 +00:00
|
|
|
conditions:
|
|
|
|
- "#approved-reviews-by>1"
|
2021-06-03 07:04:47 +00:00
|
|
|
- base=main
|
2020-11-24 15:43:08 +00:00
|
|
|
- label=automerge
|
|
|
|
actions:
|
2021-11-25 11:06:30 +00:00
|
|
|
queue:
|
|
|
|
name: default
|
2020-11-24 15:43:08 +00:00
|
|
|
method: squash
|
2022-06-19 09:43:41 +00:00
|
|
|
commit_message_template: |
|
|
|
|
{{ title }} (#{{ number }})
|
|
|
|
{{ body }}
|
2022-06-27 10:56:29 +00:00
|
|
|
- name: backport patches to main branch
|
|
|
|
conditions:
|
|
|
|
- label=backport/main
|
|
|
|
actions:
|
|
|
|
backport:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-06-19 09:43:41 +00:00
|
|
|
- name: backport patches to v0.16.x branch
|
2021-11-25 11:06:30 +00:00
|
|
|
conditions:
|
|
|
|
- base=main
|
2022-06-19 09:43:41 +00:00
|
|
|
- label=backport/0.16.x
|
2021-11-25 11:06:30 +00:00
|
|
|
actions:
|
|
|
|
backport:
|
|
|
|
branches:
|
2022-06-19 09:43:41 +00:00
|
|
|
- release/v0.16.x
|