This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy path.mergify.yml
118 lines (115 loc) · 4.5 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
pull_request_rules:
# All conditions must be true before an action will be done
# For automerge and automerge-squash, if the PR is in conflict with the base branch, even if all conditions are true, the PR will not be merged
# Automerge and automerge-squash will also autorebase
- name: Automatic merge to main branch
conditions:
# True if the base branch is main
- base=main
# check-success are true if the check ran successfully
- "check-success=Shellcheck"
- "check-success=Lint"
- "check-success=Codegen"
- "check-success=Mocks"
- "check-success=Chart checks"
- "check-success=Go build"
- "check-success=Go test"
- "check-success=Test various Envoy + SMI configuration scenarios"
- "check-success=Integration Test with Tresor, SMI traffic policies, and egress disabled"
- "check-success=Go test e2e (1)"
- "check-success=Go test e2e (2)"
- "check-success=Go test e2e (3)"
- "check-success=Go test e2e (4)"
- "check-success=Go test e2e (5)"
- "check-success=Go test e2e (6)"
- "check-success=Go test e2e (7)"
- "check-success=Go test e2e (8)"
- "check-success=Go test e2e (9)"
- "check-success=Go test e2e (10)"
- "check-success=DCO"
# True if the PR has at least 2 approving reviews
- "#approved-reviews-by>=2"
# True if the PR has the automerge label
- label=automerge
# True if the PR does not have the wip label
- -label=wip
# True if the PR does not have the do-not-merge/hold label
- -label=do-not-merge/hold
actions:
merge:
# Currently we merge PRs by creating a merge commit
method: merge
- name: Automatic squash to main branch
conditions:
# True if the base branch is main
- base=main
# check-success are true if the check ran successfully
- "check-success=Shellcheck"
- "check-success=Lint"
- "check-success=Codegen"
- "check-success=Mocks"
- "check-success=Chart checks"
- "check-success=Go build"
- "check-success=Go test"
- "check-success=Test various Envoy + SMI configuration scenarios"
- "check-success=Go test e2e (1)"
- "check-success=Go test e2e (2)"
- "check-success=Go test e2e (3)"
- "check-success=Go test e2e (4)"
- "check-success=Go test e2e (5)"
- "check-success=Go test e2e (6)"
- "check-success=Go test e2e (7)"
- "check-success=Go test e2e (8)"
- "check-success=Go test e2e (9)"
- "check-success=Go test e2e (10)"
- "check-success=Integration Test with Tresor, SMI traffic policies, and egress disabled"
- "check-success=DCO"
# True if the PR has at least 2 approving reviews
- "#approved-reviews-by>=2"
# True if the PR has the automerge label
- label=automerge-squash
# True if the PR does not have the wip label
- -label=wip
# True if the PR does not have the do-not-merge/hold label
- -label=do-not-merge/hold
actions:
merge:
# Squashes commits then merges PR
method: squash
- name: Automatic merge to release branch
conditions:
# True if the base branch has release-
- base~=^release-
# check-success are true if the check ran successfully
- "check-success=Shellcheck"
- "check-success=Lint"
- "check-success=Codegen"
- "check-success=Mocks"
- "check-success=Chart checks"
- "check-success=Go build"
- "check-success=Go test"
- "check-success=Test various Envoy + SMI configuration scenarios"
- "check-success=Go test e2e (1)"
- "check-success=Go test e2e (2)"
- "check-success=Go test e2e (3)"
- "check-success=Go test e2e (4)"
- "check-success=Go test e2e (5)"
- "check-success=Go test e2e (6)"
- "check-success=Go test e2e (7)"
- "check-success=Go test e2e (8)"
- "check-success=Go test e2e (9)"
- "check-success=Go test e2e (10)"
- "check-success=Integration Test with Tresor, SMI traffic policies, and egress disabled"
- "check-success=DCO"
# True if the PR has at least 2 approving reviews
- "#approved-reviews-by>=2"
# True if the PR has the automerge label
- label=automerge
# True if the PR does not have the wip label
- -label=wip
# True if the PR does not have the do-not-merge/hold label
- -label=do-not-merge/hold
actions:
merge:
# Currently we merge PRs by creating a merge commit
method: merge