forked from celestiaorg/celestia-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmergify.yml
41 lines (41 loc) · 888 Bytes
/
mergify.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
pull_request_rules:
- name: backport patches to v1.x branch
conditions:
- base=main
- label=backport:v1.x
actions:
backport:
branches:
- v1.x
- name: backport patches to v2.x branch
conditions:
- base=main
- label=backport:v2.x
actions:
backport:
branches:
- v2.x
- name: backport patches to v3.x branch
conditions:
- base=main
- label=backport:v3.x
actions:
backport:
branches:
- v3.x
- name: forward-port patches to main branch (v1.x)
conditions:
- base=v1.x
- label=forwardport:main
actions:
backport:
branches:
- main
- name: forward-port patches to main branch (v2.x)
conditions:
- base=v2.x
- label=forwardport:main
actions:
backport:
branches:
- main