-
-
Notifications
You must be signed in to change notification settings - Fork 240
Expand file tree
/
Copy path.mergify.yml
More file actions
30 lines (28 loc) · 734 Bytes
/
.mergify.yml
File metadata and controls
30 lines (28 loc) · 734 Bytes
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
queue_rules:
- name: default
conditions:
- -draft # not a draft
- base=main
pull_request_rules:
- name: Automatic merge on approval and when when GitHub branch protection passes on main
conditions:
- "#approved-reviews-by>=1"
- -draft
- base=main
actions:
queue:
method: merge
name: default
pull_request_rules:
- name: Automatic merge for leadership team members when there are no reviewers and the label is "ready"
conditions:
- "#review-requested=0"
- "#changes-requested-reviews-by<1"
- -draft
- base=main
- author=@leadership
- label=ready
actions:
queue:
method: merge
name: default