forked from puremourning/vimspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.mergify.yml
62 lines (59 loc) · 1.86 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
# https://blog.mergify.com/strict-mode-deprecation/
queue_rules:
- name: default
# These define the conditions to get out of the merge queue
conditions:
# CI https://doc.mergify.io/conditions.html#github-actions
- status-success=PythonLint
- status-success=VimscriptLint
- status-success=Linux
- status-success=MacOS
pull_request_rules:
- name: Merge owner PR when all checks passed
# These define the conditions to get into the merge queue
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=Linux
- status-success=MacOS
actions: &merge-actions
queue:
method: merge
name: default
delete_head_branch: {}
- name: Merge auto pr when approved
conditions:
- author=github-actions[bot]
- label=auto
- base=master
# Review
- status-success=code-review/reviewable
- "#approved-reviews-by>=1"
- "#changes-requested-reviews-by=0"
actions:
<<: *merge-actions
- name: Merge PR when all checks passed
# These define the conditions to get into the merge queue
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!