]> git.lizzy.rs Git - rust.git/blob - triagebot.toml
Finish bumping stage0
[rust.git] / triagebot.toml
1 [relabel]
2 allow-unauthenticated = [
3     "C-*", "A-*", "E-*", "NLL-*", "O-*", "S-*", "T-*", "WG-*", "F-*",
4     "D-*",
5     "needs-fcp",
6     "relnotes",
7     "requires-nightly",
8     "regression-*",
9     "perf-*",
10     # I-* without I-*nominated
11     "I-*", "!I-*nominated",
12     "AsyncAwait-OnDeck",
13 ]
14
15 [assign]
16
17 [glacier]
18
19 [ping.icebreakers-llvm]
20 alias = ["llvm", "llvms"]
21 message = """\
22 Hey LLVM ICE-breakers! This bug has been identified as a good
23 "LLVM ICE-breaking candidate". In case it's useful, here are some
24 [instructions] for tackling these sorts of bugs. Maybe take a look?
25 Thanks! <3
26
27 [instructions]: https://rustc-dev-guide.rust-lang.org/notification-groups/llvm.html
28 """
29 label = "ICEBreaker-LLVM"
30
31 [ping.icebreakers-cleanup-crew]
32 alias = ["cleanup", "cleanups", "cleanup-crew", "shrink", "reduce", "bisect"]
33 message = """\
34 Hey Cleanup Crew ICE-breakers! This bug has been identified as a good
35 "Cleanup ICE-breaking candidate". In case it's useful, here are some
36 [instructions] for tackling these sorts of bugs. Maybe take a look?
37 Thanks! <3
38
39 [instructions]: https://rustc-dev-guide.rust-lang.org/notification-groups/cleanup-crew.html
40 """
41 label = "ICEBreaker-Cleanup-Crew"
42
43 [ping.windows]
44 message = """\
45 Hey Windows Group! This bug has been identified as a good "Windows candidate".
46 In case it's useful, here are some [instructions] for tackling these sorts of
47 bugs. Maybe take a look?
48 Thanks! <3
49
50 [instructions]: https://rustc-dev-guide.rust-lang.org/notification-groups/windows.html
51 """
52 label = "O-windows"
53
54 [ping.arm]
55 message = """\
56 Hey ARM Group! This bug has been identified as a good "ARM candidate".
57 In case it's useful, here are some [instructions] for tackling these sorts of
58 bugs. Maybe take a look?
59 Thanks! <3
60
61 [instructions]: https://rustc-dev-guide.rust-lang.org/notification-groups/arm.html
62 """
63 label = "O-ARM"
64
65 [ping.risc-v]
66 message = """\
67 Hey RISC-V Group! This bug has been identified as a good "RISC-V candidate".
68 In case it's useful, here are some [instructions] for tackling these sorts of
69 bugs. Maybe take a look?
70 Thanks! <3
71
72 [instructions]: https://rustc-dev-guide.rust-lang.org/notification-groups/risc-v.html
73 """
74 label = "O-riscv"
75
76 [ping.fuchsia]
77 message = """\
78 Hey friends of Fuchsia! This issue could use some guidance on how this should be
79 resolved/implemented on Fuchsia. Could one of you weigh in?
80 """
81 label = "O-fuchsia"
82
83 [ping.macos]
84 message = """\
85 Hey MacOS Group! This issue or PR could use some MacOS-specific guidance. Could one
86 of you weigh in? Thanks <3
87 """
88 label = "O-macos"
89
90 [prioritize]
91 label = "I-prioritize"
92
93 [autolabel."I-prioritize"]
94 trigger_labels = [
95     "regression-untriaged",
96     "regression-from-stable-to-stable",
97     "regression-from-stable-to-beta",
98     "regression-from-stable-to-nightly",
99     "I-unsound",
100 ]
101 exclude_labels = [
102     "P-*",
103     "T-infra",
104     "T-release",
105     "requires-nightly",
106 ]
107
108 [autolabel."T-rustdoc"]
109 trigger_files = [
110     # Source code
111     "src/librustdoc",
112     "src/tools/rustdoc",
113     "src/rustdoc-json-types",
114
115     # Tests
116     "src/test/rustdoc",
117     "src/test/rustdoc-ui",
118     "src/test/rustdoc-gui",
119     "src/test/rustdoc-js",
120     "src/test/rustdoc-js-std",
121     "src/test/rustdoc-json",
122
123     # Internal tooling
124     "src/etc/htmldocck.py",
125     "src/tools/jsondocck",
126     "src/tools/rustdoc-gui",
127     "src/tools/rustdoc-js",
128     "src/tools/rustdoc-themes",
129 ]
130 exclude_labels = [
131     "T-*",
132 ]
133
134 [autolabel."T-compiler"]
135 trigger_files = [
136     # Source code
137     "compiler",
138
139     # Tests
140     "src/test/ui",
141 ]
142 exclude_labels = [
143     "T-*",
144 ]
145
146 [autolabel."T-libs"]
147 trigger_files = [
148     "library/alloc",
149     "library/core",
150     "library/panic_abort",
151     "library/panic_unwind",
152     "library/std",
153     "library/stdarch",
154     "library/term",
155     "library/test",
156 ]
157 exclude_labels = [
158     "T-*",
159 ]
160
161 [notify-zulip."I-prioritize"]
162 zulip_stream = 245100 # #t-compiler/wg-prioritization/alerts
163 topic = "#{number} {title}"
164 message_on_add = """\
165 @*WG-prioritization/alerts* issue #{number} has been requested for prioritization.
166
167 # [Procedure](https://forge.rust-lang.org/compiler/prioritization/procedure.html#assign-priority-to-unprioritized-issues-with-i-prioritize-label)
168 - Priority?
169 - Regression?
170 - Notify people/groups?
171 - Needs `I-nominated`?
172 """
173 message_on_remove = "Issue #{number}'s prioritization request has been removed."
174 message_on_close = "Issue #{number} has been closed while requested for prioritization."
175 message_on_reopen = "Issue #{number} has been reopened."
176
177 [notify-zulip."T-rustdoc"]
178 required_labels = ["I-nominated"]
179 zulip_stream = 266220 # #rustdoc
180 topic = "nominated: #{number}"
181 message_on_add = """\
182 @*T-rustdoc* issue #{number} "{title}" has been nominated for `T-rustdoc` discussion.
183 """
184 message_on_remove = "Issue #{number}'s nomination request has been removed."
185
186 [notify-zulip."A-edition-2021"]
187 required_labels = ["C-bug"]
188 zulip_stream = 268952 # #edition 2021
189 topic = "Edition Bugs"
190 message_on_add = """\
191 Issue #{number} "{title}" has been added.
192 """
193
194 [github-releases]
195 format = "rustc"
196 project-name = "Rust"
197 changelog-path = "RELEASES.md"
198 changelog-branch = "master"
199
200 [shortcut]