You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This command lets anyone apply labels to issues. This is most useful when opening an issue. In general, labels get applied to issues by the Triage WG. If you are interested in helping triaging issues, see the [Triage WG procedure](../../release/triage-procedure.md).
143
145
@@ -175,7 +177,7 @@ allow-unauthenticated = [
175
177
]
176
178
```
177
179
178
-
## Requesting prioritization
180
+
## Request prioritization
179
181
180
182
Users can request an issue to be prioritized by the Prioritization WG.
181
183
@@ -196,6 +198,38 @@ The command fails if the issue has already been requested for prioritization (i.
196
198
label = "I-prioritize"
197
199
```
198
200
201
+
## Autolabel an issue
202
+
203
+
When certain labels are added to an issue, this command will trigger adding a set of additional prioritization labels to the issue. In the following example adding the "I-prioritize" label will automatically add the labels in `trigger_labels` but only if the issue is not already labeled with those in `exclude_labels` (this is to avoid applying unrelated labels to issues).
204
+
205
+
```toml
206
+
[autolabel."I-prioritize"]
207
+
trigger_labels = [
208
+
"regression-from-stable-to-stable",
209
+
"regression-from-stable-to-beta",
210
+
"regression-from-stable-to-nightly"
211
+
]
212
+
exclude_labels = [
213
+
"P-*",
214
+
"T-infra",
215
+
"T-release"
216
+
]
217
+
```
218
+
219
+
## Notify Zulip
220
+
221
+
When a prioritization label is added to an issue, this command will create a new topic on Zulip, in the designated stream:
0 commit comments