@@ -27,7 +27,6 @@ pull_request_rules:
27
27
# From needs: review to needs: work - reviewers request
28
28
- name : " label needs: work when changes were requested"
29
29
conditions :
30
- - base~=feature-mergify
31
30
# Reviewers
32
31
- " #changes-requested-reviews-by>0"
33
32
actions :
@@ -40,7 +39,6 @@ pull_request_rules:
40
39
# From needs: review to needs: work - CI failure
41
40
- name : " label needs: work when travis-ci failed"
42
41
conditions :
43
- - base~=feature-mergify
44
42
# Travis failing
45
43
- status-failure~=continuous-integration/travis-ci/pr
46
44
actions :
@@ -53,7 +51,6 @@ pull_request_rules:
53
51
# From needs: review to needs: work - CI failure
54
52
- name : " label needs: work when Jenkins CI failed - pr head"
55
53
conditions :
56
- - base~=feature-mergify
57
54
# Jenkins CI failing
58
55
- status-failure~=continuous-integration/jenkins/pr-head
59
56
actions :
@@ -66,7 +63,6 @@ pull_request_rules:
66
63
# From needs: review to needs: work - CI failure
67
64
- name : " label needs: work when Jenkins CI failed - any of the pipeline"
68
65
conditions :
69
- - base~=feature-mergify
70
66
# Jenkins CI failing - any of the pipeline
71
67
- status-failure~=^jenkins-ci
72
68
actions :
@@ -79,7 +75,6 @@ pull_request_rules:
79
75
# From needs: review or needs: work to needs: CI. One approval means we should be good to start CI
80
76
- name : " label needs: CI when at least one reviewers approval"
81
77
conditions :
82
- - base~=feature-mergify
83
78
# Labels
84
79
- " label!=needs: preceding PR"
85
80
@@ -103,7 +98,6 @@ pull_request_rules:
103
98
# Conflict in the PR - needs: work and a comment to notify a user
104
99
- name : " label needs: work when there is a conflict"
105
100
conditions :
106
- - base~=feature-mergify
107
101
- conflict
108
102
actions :
109
103
label :
@@ -117,7 +111,6 @@ pull_request_rules:
117
111
118
112
- name : " add label feature branch for feature branch additions"
119
113
conditions :
120
- - base~=feature-mergify
121
114
- base~=^feature
122
115
actions :
123
116
label :
@@ -127,7 +120,6 @@ pull_request_rules:
127
120
# Ready for integration. Not yet auto merge, will be enabled once carefuly tested
128
121
- name : label "ready for merge" when ready
129
122
conditions :
130
- - base~=feature-mergify
131
123
# Labels
132
124
- " label!=do not merge"
133
125
- " label=needs: CI"
@@ -152,7 +144,6 @@ pull_request_rules:
152
144
# Clean-up after merge
153
145
- name : remove ready for merge when merged
154
146
conditions :
155
- - base~=feature-mergify
156
147
- merged
157
148
- " label=ready for merge"
158
149
actions :
@@ -162,7 +153,6 @@ pull_request_rules:
162
153
163
154
- name : add "do not merge" label when WIP is in title
164
155
conditions :
165
- - base~=feature-mergify
166
156
- title~=^(\[wip\]( |:) |\[WIP\]( |:) |wip( |:) |WIP( |:)).*
167
157
actions :
168
158
label :
@@ -172,7 +162,6 @@ pull_request_rules:
172
162
# Check if version label is applied
173
163
- name : release version is a must for merged PRs
174
164
conditions :
175
- - base~=feature-mergify
176
165
- merged
177
166
- -label~=^(release-version)
178
167
actions :
0 commit comments