]> git.lizzy.rs Git - rust.git/blob - triagebot.toml
Switch CI bucket to intelligent tiering
[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 [prioritize]
84 label = "I-prioritize"
85
86 [autolabel."I-prioritize"]
87 trigger_labels = [
88     "regression-untriaged",
89     "regression-from-stable-to-stable",
90     "regression-from-stable-to-beta",
91     "regression-from-stable-to-nightly",
92     "I-unsound",
93 ]
94 exclude_labels = [
95     "P-*",
96     "T-infra",
97     "T-release",
98     "requires-nightly",
99 ]
100
101 [autolabel."T-rustdoc"]
102 trigger_files = [
103     # Source code
104     "src/librustdoc",
105     "src/tools/rustdoc",
106     "src/rustdoc-json-types",
107
108     # Tests
109     "src/test/rustdoc",
110     "src/test/rustdoc-ui",
111     "src/test/rustdoc-gui",
112     "src/test/rustdoc-js",
113     "src/test/rustdoc-js-std",
114     "src/test/rustdoc-json",
115
116     # Internal tooling
117     "src/etc/htmldocck.py",
118     "src/tools/jsondocck",
119     "src/tools/rustdoc-gui",
120     "src/tools/rustdoc-js",
121     "src/tools/rustdoc-themes",
122 ]
123 exclude_labels = [
124     "T-*",
125 ]
126
127 [autolabel."T-compiler"]
128 trigger_files = [
129     # Source code
130     "compiler",
131
132     # Tests
133     "src/test/ui",
134 ]
135 exclude_labels = [
136     "T-*",
137 ]
138
139 [autolabel."T-libs"]
140 trigger_files = [
141     "library/alloc",
142     "library/core",
143     "library/panic_abort",
144     "library/panic_unwind",
145     "library/std",
146     "library/stdarch",
147     "library/term",
148     "library/test",
149 ]
150 exclude_labels = [
151     "T-*",
152 ]
153
154 [notify-zulip."I-prioritize"]
155 zulip_stream = 245100 # #t-compiler/wg-prioritization/alerts
156 topic = "#{number} {title}"
157 message_on_add = """\
158 @*WG-prioritization/alerts* issue #{number} has been requested for prioritization.
159
160 # [Procedure](https://forge.rust-lang.org/compiler/prioritization/procedure.html#assign-priority-to-unprioritized-issues-with-i-prioritize-label)
161 - Priority?
162 - Regression?
163 - Notify people/groups?
164 - Needs `I-nominated`?
165 """
166 message_on_remove = "Issue #{number}'s prioritization request has been removed."
167 message_on_close = "Issue #{number} has been closed while requested for prioritization."
168 message_on_reopen = "Issue #{number} has been reopened."
169
170 [notify-zulip."T-rustdoc"]
171 required_labels = ["I-nominated"]
172 zulip_stream = 266220 # #rustdoc
173 topic = "nominated: #{number}"
174 message_on_add = """\
175 @*T-rustdoc* issue #{number} "{title}" has been nominated for `T-rustdoc` discussion.
176 """
177 message_on_remove = "Issue #{number}'s nomination request has been removed."
178
179 [notify-zulip."A-edition-2021"]
180 required_labels = ["C-bug"]
181 zulip_stream = 268952 # #edition 2021
182 topic = "Edition Bugs"
183 message_on_add = """\
184 Issue #{number} "{title}" has been added.
185 """
186
187 [github-releases]
188 format = "rustc"
189 project-name = "Rust"
190 changelog-path = "RELEASES.md"
191 changelog-branch = "master"
192
193 [shortcut]