-
Notifications
You must be signed in to change notification settings - Fork 0
/
.mergify.yml
139 lines (133 loc) · 3.87 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
pull_request_rules:
# auto label ceph PR based on title content
- name: auto ceph label pr storage backend
conditions:
- title~=^ceph
- base=master
actions:
label:
add:
- ceph
# 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
- 'check-success=DCO'
- 'check-success=continuous-integration/jenkins/pr-head'
- 'check-success=canary'
- 'check-success=unittests'
- 'check-success=golangci-lint'
- 'check-success=codegen'
- 'check-success=lint'
- 'check-success=modcheck'
- 'check-success=pvc'
- 'check-success=pvc-db'
- 'check-success=pvc-db-wal'
- 'check-success=encryption-pvc'
- 'check-success=encryption-pvc-db'
- 'check-success=encryption-pvc-db-wal'
- 'check-success=encryption-pvc-kms-vault-token-auth'
actions:
merge:
method: merge
strict: false
dismiss_reviews: {}
delete_head_branch: {}
- name: automerge merge master with specific label and approvals without 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
- 'check-success=lint'
- 'check-success=DCO'
- 'check-success=continuous-integration/jenkins/pr-head'
- 'check-success=build'
actions:
merge:
method: merge
strict: false
dismiss_reviews: {}
delete_head_branch: {}
# automerge backports if CI successfully ran
# release-1.3 branch
- name: automerge backport release-1.3
conditions:
- author=mergify[bot]
- base=release-1.3
- label!=do-not-merge
- 'status-success=DCO'
- 'status-success=continuous-integration/jenkins/pr-head'
actions:
merge:
method: merge
strict: false
dismiss_reviews: {}
delete_head_branch: {}
# release-1.4 branch
- name: automerge backport release-1.4
conditions:
- author=mergify[bot]
- base=release-1.4
- label!=do-not-merge
- 'status-success=DCO'
- 'status-success=continuous-integration/jenkins/pr-head'
actions:
merge:
method: merge
strict: false
dismiss_reviews: {}
delete_head_branch: {}
# release-1.5 branch
- name: automerge backport release-1.5
conditions:
- author=mergify[bot]
- base=release-1.5
- label!=do-not-merge
- 'status-success=DCO'
- 'status-success=continuous-integration/jenkins/pr-head'
actions:
merge:
method: merge
strict: false
dismiss_reviews: {}
delete_head_branch: {}
# Trigger backport PRs based on label
# release-1.3 branch
- actions:
backport:
branches:
- release-1.3
conditions:
- label=backport-release-1.3
name: backport release-1.3
# release-1.4 branch
- actions:
backport:
branches:
- release-1.4
conditions:
- label=backport-release-1.4
name: backport release-1.4
# release-1.5 branch
- actions:
backport:
branches:
- release-1.5
conditions:
- label=backport-release-1.5
name: backport release-1.5