-
Notifications
You must be signed in to change notification settings - Fork 20
/
.mergify.yml
181 lines (181 loc) · 4.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
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
181
pull_request_rules:
- name: Automatic welcome on new pr
conditions:
- author!=BobAnkh
- author!=dependabot[bot]
- "-closed"
actions:
comment:
message: |
Thanks for opening this pull request!
Please check out the [Contributing Guidelines](https://github.com/BobAnkh/add-contributors/blob/master/CONTRIBUTING.md).
- name: Assign author
conditions:
- "-closed"
- "#assignee=0"
actions:
assign:
users:
- "{{author}}"
- name: Assign Reviewer
conditions:
- author!=BobAnkh
- "-draft"
- "-closed"
- "#review-requested=0"
actions:
request_reviews:
users:
- BobAnkh
- name: Label enhancement
conditions:
- head~=^feature\/[a-zA-Z0-9-_\/]+$|^feat\/[a-zA-Z0-9-_\/]+$
actions:
label:
add:
- enhancement
- name: Label bug
conditions:
- head~=^fix\/[a-zA-Z0-9-_\/]+$
actions:
label:
add:
- bug
- name: Label documentation
conditions:
- head~=^docs\/[a-zA-Z0-9-_\/]+$|^LinuxCommand\/[a-zA-Z0-9-_\/]+$|^LinuxTool\/[a-zA-Z0-9-_\/]+$
actions:
label:
add:
- documentation
- name: Label chore
conditions:
- head~=^chore\/[a-zA-Z0-9-_\/]+$
actions:
label:
add:
- chore
- name: Label dependencies
conditions:
- head~=^dependabot\/[a-zA-Z0-9-_\/]+$
actions:
label:
add:
- dependencies
- 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/BobAnkh/add-contributors/blob/master/CONTRIBUTING.md) for more information.
- name: message check comment
conditions:
- "status-failure=gitmagic/rules"
- author!=dependabot[bot]
- "-closed"
- "-merged"
actions:
comment:
message: |
@{{author}}
Contribution Message Convention Tests failed with GitMagic.
Please check details and [Contributing Guidelines](https://github.com/BobAnkh/add-contributors/blob/master/CONTRIBUTING.md) for more information.
If you don't want to correct it yourself, just tell the maintainers. They will do it when merging.
- name: markdownlint check comment
conditions:
- "status-failure=markdownlint-cli-check"
- "-closed"
- "-merged"
actions:
comment:
message: |
@{{author}}
Markdown Files Check failed with markdownlint.
Please check details or [Contributing Guidelines](https://github.com/BobAnkh/add-contributors/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: All check pass comment
conditions:
- status-success=Title Validator
- status-success=gitmagic/rules
- status-success=markdownlint-cli-check
- "-closed"
- "-draft"
- "-conflict"
- "-merged"
actions:
comment:
message: |
All checks passed.
Please wait for review.
- name: Automatic merge on approval
conditions:
- author!=BobAnkh
- author!=dependabot[bot]
- "#approved-reviews-by>=1"
- status-success=Title Validator
- status-success=gitmagic/rules
- status-success=markdownlint-cli-check
- 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: merge
strict: smart+fasttrack
strict_method: rebase
- name: Automatic merge
conditions:
- author=BobAnkh
- status-success=Title Validator
- status-success=gitmagic/rules
- status-success=markdownlint-cli-check
- label!=invalid
- "-closed"
- "-draft"
- "-conflict"
- "-merged"
actions:
merge:
method: merge
strict: smart+fasttrack
strict_method: rebase
- name: Automatic merge dependabot[bot]
conditions:
- author=dependabot[bot]
- "#approved-reviews-by>=1"
- "-status-failure=Title Validator"
- label!=invalid
- "-closed"
- "-draft"
- "-conflict"
- "-merged"
actions:
merge:
method: merge
strict: smart+fasttrack
strict_method: rebase