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