This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
.mergify.yml
79 lines (78 loc) · 1.64 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
queue_rules:
- name: default
conditions:
- status-success=all tests passed
pull_request_rules:
- name: automatic squash-and-merge on CI success and review
conditions:
- status-success=all tests passed
- '#approved-reviews-by>=1'
- '#changes-requested-reviews-by=0'
- base=master
- label="Please Merge"
- label!="DO NOT MERGE"
- label!="bp-conflict"
actions:
queue:
name: default
method: squash
update_method: merge
- name: backport to 1.5.x
conditions:
- merged
- base=master
- milestone=1.5.x
actions:
backport:
branches:
- 1.5.x
labels:
- Backport
ignore_conflicts: true
label_conflicts: bp-conflict
label:
add:
- Backported
- name: backport to 1.3.x, 1.5.x
conditions:
- merged
- base=master
- milestone=1.3.x
actions:
backport:
branches:
- 1.3.x
- 1.5.x
labels:
- Backport
ignore_conflicts: true
label_conflicts: bp-conflict
label:
add:
- Backported
- name: automatic squash-and-mege of 1.3.x backport PRs
conditions:
- status-success=all tests passed
- '#changes-requested-reviews-by=0'
- base=1.3.x
- label="Backport"
- label!="DO NOT MERGE"
- label!="bp-conflict"
actions:
queue:
name: default
method: squash
update_method: merge
- name: automatic squash-and-mege of 1.5.x backport PRs
conditions:
- status-success=all tests passed
- '#changes-requested-reviews-by=0'
- base=1.5.x
- label="Backport"
- label!="DO NOT MERGE"
- label!="bp-conflict"
actions:
queue:
name: default
method: squash
update_method: merge