forked from puremourning/vimspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.mergify.yml
38 lines (35 loc) · 1.07 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
pull_request_rules:
- name: Merge owner PR when all checks passed
conditions:
- author=puremourning
- base=master
# Review
- status-success=code-review/reviewable
- "#changes-requested-reviews-by=0"
# CI https://doc.mergify.io/conditions.html#github-actions
- status-success=PythonLint
- status-success=VimscriptLint
- status-success=MacOS
actions: &merge-actions
merge:
method: merge
strict: smart
delete_head_branch: {}
- name: Merge PR when all checks passed
conditions:
- author!=puremourning
- base=master
# Review
- status-success=code-review/reviewable
- "#approved-reviews-by>=1"
- "#changes-requested-reviews-by=0"
- approved-reviews-by=puremourning
# CI https://doc.mergify.io/conditions.html#github-actions
- status-success=PythonLint
- status-success=VimscriptLint
- status-success=Linux
- status-success=MacOS
actions:
<<: *merge-actions
comment:
message: Thanks for sending a PR!