Skip to content

Commit

Permalink
ci: add mergify (#361)
Browse files Browse the repository at this point in the history
* ci: add mergify

* add backport for v0.11.x
  • Loading branch information
crodriguezvega authored Aug 30, 2024
1 parent 6a29994 commit 26d1ab1
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/mergify.yml
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

0 comments on commit 26d1ab1

Please sign in to comment.