forked from solana-labs/solana
-
Notifications
You must be signed in to change notification settings - Fork 258
/
.mergify.yml
217 lines (214 loc) · 8.35 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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
# https://doc.mergify.io/
pull_request_rules:
- name: label changes from community
conditions:
- author≠@core-contributors
- author≠@monorepo-maintainers
- author≠@monorepo-write
- author≠@monorepo-triage
- author≠mergify[bot]
- author≠dependabot[bot]
- author≠github-actions[bot]
actions:
label:
add:
- community
- need:merge-assist
- name: request review for community changes
conditions:
- author≠@core-contributors
- author≠@monorepo-maintainers
- author≠@monorepo-write
- author≠@monorepo-triage
- author≠mergify[bot]
- author≠dependabot[bot]
- author≠github-actions[bot]
# Only request reviews from the pr subscribers group if no one
# has reviewed the community PR yet. These checks only match
# reviewers with admin, write or maintain permission on the repository.
- "#approved-reviews-by=0"
- "#commented-reviews-by=0"
- "#changes-requested-reviews-by=0"
- "#review-requested=0"
actions:
request_reviews:
teams:
- "@anza-xyz/community-pr-subscribers"
- name: label changes from monorepo-triage
conditions:
- author≠@core-contributors
- author≠mergify[bot]
- author≠dependabot[bot]
- author≠github-actions[bot]
- author≠@monorepo-maintainers
- author≠@monorepo-write
- author=@monorepo-triage
actions:
label:
add:
- need:merge-assist
- name: automatic merge (squash) on CI success
conditions:
- and:
- status-success=buildkite/agave
- status-success=ci-gate
- label=automerge
- label!=no-automerge
- or:
# only require docs checks if docs files changed
- -files~=^docs/
- status-success=build & deploy docs
- or:
- -files~=(\.rs|Cargo\.toml|Cargo\.lock|\.github/scripts/cargo-clippy-before-script\.sh|\.github/workflows/cargo\.yml)$
- or:
- check-success=clippy-nightly (macos-latest)
- check-success=clippy-nightly (macos-latest-large)
- or:
- -files~=(\.rs|Cargo\.toml|Cargo\.lock|cargo-build-sbf|cargo-test-sbf|ci/downstream-projects/run-spl\.sh|\.github/workflows/downstream-project-spl\.yml)$
- and:
- status-success=cargo-test-sbf (token/program)
- status-success=cargo-test-sbf (instruction-padding/program, token/program-2022, token/program-2022-test)
- status-success=cargo-test-sbf (associated-token-account/program, associated-token-account/program-test)
- status-success=cargo-test-sbf (token-upgrade/program)
- status-success=cargo-test-sbf (feature-proposal/program)
- status-success=cargo-test-sbf (governance/addin-mock/program, governance/program)
- status-success=cargo-test-sbf (name-service/program)
- status-success=cargo-test-sbf (stake-pool/program)
- status-success=cargo-test-sbf (single-pool/program)
- or:
- -files~=(Cargo\.toml|.github/workflows/crate-check\.yml|ci/check-crates\.sh)$
- check-success=crate check
actions:
merge:
method: squash
- name: remove automerge label on CI failure
conditions:
- and:
- label=automerge
- "#status-failure!=0"
- -merged
actions:
label:
remove:
- automerge
comment:
message: automerge label removed due to a CI failure
- name: v2.0 feature-gate backport
conditions:
- label=v2.0
- label=feature-gate
actions:
backport:
assignees: &BackportAssignee
- "{{ merged_by|replace('mergify[bot]', label|select('equalto', 'community')|first|default(author)|replace('community', '@anza-xyz/community-pr-subscribers')) }}"
title: "{{ destination_branch }}: {{ title }} (backport of #{{ number }})"
ignore_conflicts: true
labels:
- feature-gate
branches:
- v2.0
- name: v2.0 non-feature-gate backport
conditions:
- label=v2.0
- label!=feature-gate
actions:
backport:
assignees: *BackportAssignee
title: "{{ destination_branch }}: {{ title }} (backport of #{{ number }})"
ignore_conflicts: true
branches:
- v2.0
- name: v2.0 backport warning comment
conditions:
- label=v2.0
actions:
comment:
message: >
Backports to the stable branch are to be avoided unless absolutely
necessary for fixing bugs, security issues, and perf regressions.
Changes intended for backport should be structured such that a
minimum effective diff can be committed separately from any
refactoring, plumbing, cleanup, etc that are not strictly
necessary to achieve the goal. Any of the latter should go only
into master and ride the normal stabilization schedule.
- name: v2.1 feature-gate backport
conditions:
- label=v2.1
- label=feature-gate
actions:
backport:
assignees: *BackportAssignee
title: "{{ destination_branch }}: {{ title }} (backport of #{{ number }})"
ignore_conflicts: true
labels:
- feature-gate
branches:
- v2.1
- name: v2.1 non-feature-gate backport
conditions:
- label=v2.1
- label!=feature-gate
actions:
backport:
assignees: *BackportAssignee
title: "{{ destination_branch }}: {{ title }} (backport of #{{ number }})"
ignore_conflicts: true
branches:
- v2.1
- name: v2.1 backport warning comment
conditions:
- label=v2.1
actions:
comment:
message: >
Backports to the beta branch are to be avoided unless absolutely
necessary for fixing bugs, security issues, and perf regressions.
Changes intended for backport should be structured such that a
minimum effective diff can be committed separately from any
refactoring, plumbing, cleanup, etc that are not strictly
necessary to achieve the goal. Any of the latter should go only
into master and ride the normal stabilization schedule. Exceptions
include CI/metrics changes, CLI improvements and documentation
updates on a case by case basis.
- name: Reminder to update RPC clients for changes in `rpc/`
conditions:
- or:
- files~=^rpc/src/rpc\.rs$
- files~=^rpc/src/rpc_pubsub\.rs$
- files~=^rpc-client-api/src/.*\.rs$
actions:
comment:
message: |
If this PR represents a change to the public RPC API:
1. Make sure it includes a complementary update to `rpc-client/` ([example](https://github.com/solana-labs/solana/pull/29558/files))
2. Open a follow-up PR to update the JavaScript client `@solana/web3.js` ([example](https://github.com/solana-labs/solana-web3.js/pull/2868/files))
Thank you for keeping the RPC clients in sync with the server API @{{author}}.
- name: Reminder to add Firedancer team to changes in `programs/` and `sdk/`
conditions:
- or:
- files~=^programs/address-lookup-table/src/.*\.rs$
- files~=^programs/bpf_loader/src/.*\.rs$
- files~=^programs/compute_budget/src/.*\.rs$
- files~=^programs/config/src/.*\.rs$
- files~=^programs/loader-v4/src/.*\.rs$
- files~=^programs/stake/src/.*\.rs$
- files~=^programs/system/src/.*\.rs$
- files~=^programs/vote/src/.*\.rs$
- files~=^programs/zk-elgamal-proof/src/.*\.rs$
- files~=^sdk/program/src/stake.*\.rs$ # includes stake_history.rs
- files~=^sdk/program/src/vote/.*\.rs$
actions:
comment:
message: |
The Firedancer team maintains a line-for-line reimplementation of the
native programs, and until native programs are moved to BPF, those
implementations must exactly match their Agave counterparts.
If this PR represents a change to a native program implementation (not
tests), please include a reviewer from the Firedancer team. And please
keep refactors to a minimum.
commands_restrictions:
# The author of copied PRs is the Mergify user.
# Restrict `copy` access to Core Contributors
copy:
conditions:
- author=@core-contributors