-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.mergify.yml
110 lines (101 loc) · 2.84 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
pull_request_rules:
- name: 'approve automated PRs that have passed checks'
conditions:
- '#files<=6'
- 'base=master'
actions:
review:
type: 'APPROVE'
message:
"We've automatically approved this PR because the checks from the
automated Pull Request have passed."
label:
add:
- 'auto-approved'
- name: automatic merge on CI success require review
conditions:
- status-success=Travis CI - Pull Request
- '#approved-reviews-by>=1'
- '#changes-requested-reviews-by=0'
- '#commented-reviews-by=0'
- label!=block-merge
actions:
label:
add:
- quotes
merge:
method: squash
strict: smart
strict_method: merge
# 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: {}
- name: Automatically approve Dependabot PRs
conditions:
- base=master
- author~=^dependabot(|-preview)\[bot\]$
- -title~=(WIP|wip)
- -label~=(blocked|do-not-merge)
- -merged
- -closed
actions:
review:
type: APPROVE
- name: 'delete the head branch after merge'
conditions:
- 'merged'
actions:
delete_head_branch: {}
- name: 'ask to resolve conflict'
conditions:
- 'conflict'
actions:
comment:
message:
'This pull request now has conflicts. Could you fix it @{{author}}? 🙏'
- name: 'remove outdated reviews'
conditions:
- 'base=master'
actions:
dismiss_reviews:
changes_requested: true
approved: true
message:
"This Pull Request has been updated, so we're dismissing all reviews."