]> git.lizzy.rs Git - rust.git/blob - triagebot.toml
stop evaluating constants in `Relate`
[rust.git] / triagebot.toml
1 [relabel]
2 allow-unauthenticated = [
3     "A-*",
4     "C-*",
5     "D-*",
6     "E-*",
7     "F-*",
8     "I-*",
9     "NLL-*",
10     "O-*",
11     "S-*",
12     "T-*",
13     "WG-*",
14     "needs-fcp",
15     "relnotes",
16     "requires-nightly",
17     "regression-*",
18     "perf-*",
19     "AsyncAwait-OnDeck",
20 ]
21
22 [assign]
23
24 [glacier]
25
26 [ping.icebreakers-llvm]
27 alias = ["llvm", "llvms"]
28 message = """\
29 Hey LLVM ICE-breakers! This bug has been identified as a good
30 "LLVM ICE-breaking candidate". In case it's useful, here are some
31 [instructions] for tackling these sorts of bugs. Maybe take a look?
32 Thanks! <3
33
34 [instructions]: https://rustc-dev-guide.rust-lang.org/notification-groups/llvm.html
35 """
36 label = "ICEBreaker-LLVM"
37
38 [ping.icebreakers-cleanup-crew]
39 alias = ["cleanup", "cleanups", "cleanup-crew", "shrink", "reduce", "bisect"]
40 message = """\
41 Hey Cleanup Crew ICE-breakers! This bug has been identified as a good
42 "Cleanup ICE-breaking candidate". In case it's useful, here are some
43 [instructions] for tackling these sorts of bugs. Maybe take a look?
44 Thanks! <3
45
46 [instructions]: https://rustc-dev-guide.rust-lang.org/notification-groups/cleanup-crew.html
47 """
48 label = "ICEBreaker-Cleanup-Crew"
49
50 [ping.windows]
51 message = """\
52 Hey Windows Group! This bug has been identified as a good "Windows candidate".
53 In case it's useful, here are some [instructions] for tackling these sorts of
54 bugs. Maybe take a look?
55 Thanks! <3
56
57 [instructions]: https://rustc-dev-guide.rust-lang.org/notification-groups/windows.html
58 """
59 label = "O-windows"
60
61 [ping.arm]
62 message = """\
63 Hey ARM Group! This bug has been identified as a good "ARM candidate".
64 In case it's useful, here are some [instructions] for tackling these sorts of
65 bugs. Maybe take a look?
66 Thanks! <3
67
68 [instructions]: https://rustc-dev-guide.rust-lang.org/notification-groups/arm.html
69 """
70 label = "O-ARM"
71
72 [ping.risc-v]
73 message = """\
74 Hey RISC-V Group! This bug has been identified as a good "RISC-V candidate".
75 In case it's useful, here are some [instructions] for tackling these sorts of
76 bugs. Maybe take a look?
77 Thanks! <3
78
79 [instructions]: https://rustc-dev-guide.rust-lang.org/notification-groups/risc-v.html
80 """
81 label = "O-riscv"
82
83 [ping.fuchsia]
84 message = """\
85 Hey friends of Fuchsia! This issue could use some guidance on how this should be
86 resolved/implemented on Fuchsia. Could one of you weigh in?
87 """
88 label = "O-fuchsia"
89
90 [ping.macos]
91 message = """\
92 Hey MacOS Group! This issue or PR could use some MacOS-specific guidance. Could one
93 of you weigh in? Thanks <3
94 """
95 label = "O-macos"
96
97 [prioritize]
98 label = "I-prioritize"
99
100 [autolabel."I-prioritize"]
101 trigger_labels = [
102     "regression-untriaged",
103     "regression-from-stable-to-stable",
104     "regression-from-stable-to-beta",
105     "regression-from-stable-to-nightly",
106     "I-unsound",
107 ]
108 exclude_labels = [
109     "P-*",
110     "T-infra",
111     "T-release",
112     "requires-nightly",
113 ]
114
115 [autolabel."T-rustdoc"]
116 trigger_files = [
117     # Source code
118     "src/librustdoc",
119     "src/tools/rustdoc",
120     "src/rustdoc-json-types",
121
122     # Tests
123     "src/test/rustdoc",
124     "src/test/rustdoc-ui",
125     "src/test/rustdoc-gui",
126     "src/test/rustdoc-js",
127     "src/test/rustdoc-js-std",
128     "src/test/rustdoc-json",
129
130     # Internal tooling
131     "src/etc/htmldocck.py",
132     "src/etc/check_missing_items.py",
133     "src/tools/jsondocck",
134     "src/tools/rustdoc-gui",
135     "src/tools/rustdoc-js",
136     "src/tools/rustdoc-themes",
137 ]
138 exclude_labels = [
139     "T-*",
140 ]
141
142 [autolabel."A-rustdoc-json"]
143 trigger_files = [
144     "src/etc/check_missing_items.py",
145     "src/librustdoc/json/",
146     "src/rustdoc-json-types",
147     "src/test/rustdoc-json",
148     "src/tools/jsondocck",
149 ]
150
151 [autolabel."T-compiler"]
152 trigger_files = [
153     # Source code
154     "compiler",
155
156     # Tests
157     "src/test/ui",
158 ]
159 exclude_labels = [
160     "T-*",
161 ]
162
163 [autolabel."T-libs"]
164 trigger_files = [
165     "library/alloc",
166     "library/core",
167     "library/panic_abort",
168     "library/panic_unwind",
169     "library/std",
170     "library/stdarch",
171     "library/term",
172     "library/test",
173 ]
174 exclude_labels = [
175     "T-*",
176 ]
177
178 [autolabel."A-bootstrap"]
179 trigger_files = [
180     "x.py",
181     "src/bootstrap",
182     "src/tools/rust-installer",
183 ]
184
185 [autolabel."T-infra"]
186 trigger_files = [
187     "src/ci",
188     "src/tools/bump-stage0",
189 ]
190
191 [autolabel."A-translation"]
192 trigger_files = [
193     "compiler/rustc_error_messages",
194     "compiler/rustc_errors/src/translation.rs",
195     "compiler/rustc_macros/src/diagnostics"
196 ]
197
198 [autolabel."A-query-system"]
199 trigger_files = [
200     "compiler/rustc_query_system",
201     "compiler/rustc_query_impl",
202     "compiler/rustc_macros/src/query.rs"
203 ]
204
205 [notify-zulip."I-prioritize"]
206 zulip_stream = 245100 # #t-compiler/wg-prioritization/alerts
207 topic = "#{number} {title}"
208 message_on_add = """\
209 @*WG-prioritization/alerts* issue #{number} has been requested for prioritization.
210
211 # [Procedure](https://forge.rust-lang.org/compiler/prioritization/procedure.html#assign-priority-to-unprioritized-issues-with-i-prioritize-label)
212 - Priority?
213 - Regression?
214 - Notify people/groups?
215 - Needs `I-nominated`?
216 """
217 message_on_remove = "Issue #{number}'s prioritization request has been removed."
218 message_on_close = "Issue #{number} has been closed while requested for prioritization."
219 message_on_reopen = "Issue #{number} has been reopened."
220
221 [notify-zulip."T-rustdoc"]
222 required_labels = ["I-nominated"]
223 zulip_stream = 266220 # #rustdoc
224 topic = "nominated: #{number}"
225 message_on_add = """\
226 @*T-rustdoc* issue #{number} "{title}" has been nominated for `T-rustdoc` discussion.
227 """
228 message_on_remove = "Issue #{number}'s nomination request has been removed."
229
230 [notify-zulip."I-types-nominated"]
231 zulip_stream = 326866 # #T-types/nominated
232 topic = "#{number}: {title}"
233 message_on_add = """\
234 @*T-types* issue #{number} "{title}" has been nominated for team discussion.
235 """
236 message_on_remove = "Issue #{number}'s nomination has been removed. Thanks all for participating!"
237 message_on_close = "Issue #{number} has been closed. Thanks for participating!"
238 message_on_reopen = "Issue #{number} has been reopened. Pinging @*T-types*."
239
240 [notify-zulip."A-edition-2021"]
241 required_labels = ["C-bug"]
242 zulip_stream = 268952 # #edition 2021
243 topic = "Edition Bugs"
244 message_on_add = """\
245 Issue #{number} "{title}" has been added.
246 """
247
248 [github-releases]
249 format = "rustc"
250 project-name = "Rust"
251 changelog-path = "RELEASES.md"
252 changelog-branch = "master"
253
254 [shortcut]
255
256
257 [mentions."compiler/rustc_apfloat"]
258 message = """
259 Changes rustc_apfloat. rustc_apfloat is currently in limbo and you almost \
260 certainly don't want to change it (see #55993).
261 """
262 cc = ["@eddyb"]
263
264 [mentions."compiler/rustc_codegen_cranelift"]
265 cc = ["@bjorn3"]
266
267 [mentions."compiler/rustc_codegen_gcc"]
268 cc = ["@antoyo"]
269
270 [mentions."compiler/rustc_const_eval/src/interpret"]
271 message = "Some changes occurred to the CTFE / Miri engine"
272 cc = ["@rust-lang/miri"]
273
274 [mentions."compiler/rustc_infer/src/infer/error_reporting/need_type_info.rs"]
275 message = "Some changes occurred in need_type_info.rs"
276 cc = ["@lcnr"]
277
278 [mentions."compiler/rustc_middle/src/mir/interpret"]
279 message = "Some changes occurred to the CTFE / Miri engine"
280 cc = ["@rust-lang/miri"]
281
282 [mentions."compiler/rustc_mir_transform/src/"]
283 message = "Some changes occurred to MIR optimizations"
284 cc = ["@rust-lang/wg-mir-opt"]
285
286 [mentions."compiler/rustc_trait_selection/src/traits/const_evaluatable.rs"]
287 message = "Some changes occurred in const_evaluatable.rs"
288 cc = ["@lcnr"]
289
290 [mentions."compiler/rustc_error_codes/src/error_codes.rs"]
291 message = "Some changes occurred in diagnostic error codes"
292 cc = ["@GuillaumeGomez"]
293
294 [mentions."library"]
295 message = """
296 Hey! It looks like you've submitted a new PR for the library teams!
297
298 If this PR contains changes to any `rust-lang/rust` public library APIs then \
299 please comment with `@rustbot label +T-libs-api -T-libs` to tag it \
300 appropriately. If this PR contains changes to any unstable APIs please edit \
301 the PR description to add a link to the relevant [API Change \
302 Proposal](https://std-dev-guide.rust-lang.org/feature-lifecycle/api-change-proposals.html) \
303 or [create one](https://github.com/rust-lang/libs-team/issues/new?assignees=&labels=api-change-proposal%2C+T-libs-api&template=api-change-proposal.md&title=%28My+API+Change+Proposal%29) \
304 if you haven't already. If you're unsure where your change falls no worries, \
305 just leave it as is and the reviewer will take a look and make a decision to \
306 forward on if necessary.
307
308 Examples of `T-libs-api` changes:
309
310 * Stabilizing library features
311 * Introducing insta-stable changes such as new implementations of existing \
312   stable traits on existing stable types
313 * Introducing new or changing existing unstable library APIs (excluding \
314   permanently unstable features / features without a tracking issue)
315 * Changing public documentation in ways that create new stability guarantees
316 * Changing observable runtime behavior of library APIs
317 """
318
319 [mentions."src/librustdoc/clean/types.rs"]
320 cc = ["@camelid"]
321
322 [mentions."src/librustdoc/html/static"]
323 message = "Some changes occurred in HTML/CSS/JS."
324 cc = [
325     "@GuillaumeGomez",
326     "@Folyd",
327     "@jsha",
328 ]
329
330 [mentions."src/librustdoc/html/static/css/themes"]
331 message = "Some changes occurred in HTML/CSS themes."
332 cc = ["@GuillaumeGomez"]
333
334 [mentions."src/librustdoc/html/static/css/themes/ayu.css"]
335 message = "A change occurred in the Ayu theme."
336 cc = ["@Cldfire"]
337
338 [mentions."src/rustdoc-json-types"]
339 message = """
340 rustdoc-json-types is a **public** (although nightly-only) API. \
341 If possible, consider changing `src/librustdoc/json/conversions.rs`; \
342 otherwise, make sure you bump the `FORMAT_VERSION` constant.
343 """
344 cc = [
345     "@CraftSpider",
346     "@aDotInTheVoid",
347     "@Enselic",
348 ]
349
350 [mentions."src/tools/cargo"]
351 cc = ["@ehuss"]
352
353 [mentions."src/tools/clippy"]
354 cc = ["@rust-lang/clippy"]
355
356 [mentions."src/tools/miri"]
357 message = "The Miri submodule was changed"
358 cc = ["@rust-lang/miri"]
359
360 [mentions."src/tools/rustfmt"]
361 cc = ["@rust-lang/rustfmt"]
362
363 [mentions."compiler/rustc_middle/src/mir/syntax.rs"]
364 message = "This PR changes MIR"
365 cc = ["@oli-obk", "@RalfJung", "@JakobDegen", "@davidtwco", "@celinval", "@vakaras"]
366
367 [mentions."compiler/rustc_error_messages"]
368 message = "`rustc_error_messages` was changed"
369 cc = ["@davidtwco", "@compiler-errors", "@JohnTitor", "@estebank", "@TaKO8Ki"]
370
371 [mentions."compiler/rustc_errors/src/translation.rs"]
372 message = "`rustc_errors::translation` was changed"
373 cc = ["@davidtwco", "@compiler-errors", "@JohnTitor", "@estebank", "@TaKO8Ki"]
374
375 [mentions."compiler/rustc_macros/src/diagnostics"]
376 message = "`rustc_macros::diagnostics` was changed"
377 cc = ["@davidtwco", "@compiler-errors", "@JohnTitor", "@estebank", "@TaKO8Ki"]