-
Notifications
You must be signed in to change notification settings - Fork 154
/
.mergify.yml
51 lines (48 loc) · 1.07 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
pull_request_rules:
# For more information: https://doc.mergify.io/actions.html#copy
# We used to use the 'backport' action, but:
# https://github.com/Mergifyio/mergify-engine/issues/789
- name: backport patches to 1.2
conditions:
- base=master
- label=backport 1.2
- merged
actions:
copy:
ignore_conflicts: True
branches:
- "1.2"
- name: backport patches to 1.4
conditions:
- base=master
- label=backport 1.4
- merged
actions:
copy:
ignore_conflicts: True
branches:
- "1.4"
- name: backport patches to 1.6
conditions:
- base=master
- label=backport 1.6
- merged
actions:
copy:
ignore_conflicts: True
branches:
- "1.6"
queue:
update_method: rebase
- name: backport patches to 1.8
conditions:
- base=master
- label=backport 1.8
- merged
actions:
copy:
ignore_conflicts: True
branches:
- "1.8"
queue:
update_method: rebase