-
Notifications
You must be signed in to change notification settings - Fork 71
/
.mergify.yml
50 lines (49 loc) · 1.15 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
queue_rules:
- name: default
conditions:
- status-success=main
pull_request_rules:
- name: Automatically merge into master after build and review
conditions:
- base=master
- status-success=main
- "#approved-reviews-by>=1"
actions:
queue:
method: squash
name: default
label:
add: ["auto merged"]
- name: Automatically merge into release- after build and approval
conditions:
- base~=^release-
- status-success=main
- "#approved-reviews-by>=1"
actions:
queue:
method: squash
name: default
label:
add: ["auto merged"]
- name: Automatically merge backport into release branches
conditions:
- head~=mergify/bp
- author~=mergify
- base~=^release-
- status-success=main
actions:
queue:
method: squash
name: default
label:
add: ["auto merged"]
- name: Automatically mergify-yaml changes to master
conditions:
- base=master
- title~=^fix(mergify)
actions:
queue:
method: squash
name: default
label:
add: ["auto merged"]