-
Notifications
You must be signed in to change notification settings - Fork 14
/
.mergify.yml
54 lines (49 loc) · 1.08 KB
/
.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
42
43
44
45
46
47
48
49
50
51
52
53
54
pull_request_rules:
- name: port main patches to stable branch
conditions:
- base=main
- label=port-to-stable
actions:
backport:
branches:
- stable
- name: port main patches to oldstable branch
conditions:
- base=main
- label=port-to-oldstable
actions:
backport:
branches:
- oldstable
- name: port stable patches to main branch
conditions:
- base=stable
- label=port-to-main
actions:
backport:
branches:
- main
- name: port stable patches to oldstable branch
conditions:
- base=stable
- label=port-to-oldstable
actions:
backport:
branches:
- oldstable
- name: port oldstable patches to main branch
conditions:
- base=oldstable
- label=port-to-main
actions:
backport:
branches:
- main
- name: port oldstable patches to stable branch
conditions:
- base=oldstable
- label=port-to-stable
actions:
backport:
branches:
- stable