-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.mergify.yml
54 lines (50 loc) · 1.55 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: automatic merge on CI success require review
conditions:
- status-success=Travis CI - Pull Request
- "#approved-reviews-by>=1"
- "#changes-requested-reviews-by=0"
- label!=block-merge
actions:
label:
add:
- quotes
merge:
method: squash
strict: smart
# if there is a conflict in a backport PR, ping the author to send a proper backport PR
- name: ping author on conflicts
conditions:
- conflict
actions:
comment:
message: This pull request has merge conflicts that must be resolved before it can be merged. @{{author}} please rebase it. https://rook.io/docs/rook/master/development-flow.html#updating-your-fork
# automerge on master only under certain strict conditions
- name: automerge merge master with specific label and approvals with code change
conditions:
- author=mergify[bot]
- base=master
- "#approved-reviews-by>=1"
- "#changes-requested-reviews-by=0"
- label!=do-not-merge
- label=ready-to-merge
actions:
merge:
method: merge
strict: false
dismiss_reviews: { }
delete_head_branch: { }
- name: automatic merge on CI success for TemplateControl
conditions:
- status-success=Travis CI - Pull Request
- label=merge-when-green
- label!=block-merge
actions:
merge:
method: squash
strict: smart
- name: delete branch after merge
conditions:
- merged
actions:
delete_head_branch: { }