-
Notifications
You must be signed in to change notification settings - Fork 0
/
.mergify.yml
180 lines (180 loc) · 4.41 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
pull_request_rules:
- name: Automatic welcome on new pr
conditions:
- author!=unknowIfGuestInDream
- author!=dependabot[bot]
- "-closed"
actions:
comment:
message: |
Thanks for opening this pull request!
Please check out the [Contributing Guidelines](https://github.com/unknowIfGuestInDream/javafxTool/blob/master/CONTRIBUTING.md).
- name: Assign author
conditions:
- "-closed"
- "#assignee=0"
actions:
assign:
users:
- "{{author}}"
- name: Assign Reviewer
conditions:
- author!=unknowIfGuestInDream
- "-draft"
- "-closed"
- "#review-requested=0"
actions:
request_reviews:
teams:
- "@tlcsdm/nyxue"
- name: Label enhancement
conditions:
- title~=^feat(\(([\w$.\-*/ ]*)\))?:[ ](.*)$
actions:
label:
add:
- enhancement
- name: Label bug
conditions:
- title~=^fix(\(([\w$.\-*/ ]*)\))?:[ ](.*)$
actions:
label:
add:
- bug
- name: Label documentation
conditions:
- title~=^docs(\(([\w$.\-*/ ]*)\))?:[ ](.*)$
actions:
label:
add:
- documentation
- name: Label chore
conditions:
- title~=^chore(\(([\w$.\-*/ ]*)\))?:[ ](.*)$
actions:
label:
add:
- chore
- name: Label dependencies
conditions:
- title~=^(build|ci)\/[a-zA-Z0-9-_\/]+$
actions:
label:
add:
- dependencies
- name: Label style
conditions:
- title~=^style(\(([\w$.\-*/ ]*)\))?:[ ](.*)$
actions:
label:
add:
- style
- name: Label workflow
conditions:
- title~=^bot\/[a-zA-Z0-9-_\/]+$
actions:
label:
add:
- workflow
- name: Label test
conditions:
- title~=^test(\(([\w$.\-*/ ]*)\))?:[ ](.*)$
actions:
label:
add:
- test
- name: Title Validator comment
conditions:
- "status-failure=Title Validator"
- "-closed"
- "-merged"
actions:
comment:
message: |
@{{author}}
Wrong PR Title: {{title}}
Please check [Contributing Guidelines](https://github.com/unknowIfGuestInDream/javafxTool/blob/master/CONTRIBUTING.md) for more information.
- name: conflict comment
conditions:
- "-closed"
- "-draft"
- "-merged"
- "conflict"
actions:
comment:
message: |
@{{author}}
There are some conflicts within your pull request.
Could you please fix them?
- name: GitGuardian check comment
conditions:
- "status-failure=GitGuardian Security Checks"
- author!=dependabot[bot]
- author!=imgbot[bot]
- "-closed"
- "-merged"
actions:
comment:
message: |
@{{author}}
Your commit has API keys, passwords, certificates, encryption keys and other sensitive data!
Please remove this sensitive data.
- name: All check pass comment
conditions:
- status-success=Title Validator
- "status-failure=GitGuardian Security Checks"
- "-closed"
- "-draft"
- "-conflict"
- "-merged"
actions:
comment:
message: |
All checks passed.
Please wait for review.
- name: Automatic merge on approval
conditions:
- author!=unknowIfGuestInDream
- author!=dependabot[bot]
- "#approved-reviews-by>=1"
- status-success=Title Validator
- label!=invalid
- "-closed"
- "-draft"
- "-conflict"
- "-merged"
actions:
comment:
message: |
This pull request has been approved by:
{% for name in approved_reviews_by %}
@{{name}}
{% endfor %}
Thank you @{{author}} for your contributions!
merge:
method: squash
- name: Automatic merge
conditions:
- author=unknowIfGuestInDream
- status-success=Title Validator
- label!=invalid
- "-closed"
- "-draft"
- "-conflict"
- "-merged"
actions:
merge:
method: squash
- name: automatic merge for ImgBot pull requests
conditions:
- author=imgbot[bot]
- "-status-failure=Title Validator"
- "#approved-reviews-by>=1"
- label!=invalid
- "-closed"
- "-draft"
- "-conflict"
- "-merged"
actions:
merge:
method: squash