Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions triagebot.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ allow-unauthenticated = [
"has-merge-commits",
]

[relabel.to-stable]
add-labels = ["regression-from-stable-to-stable"]
rem-labels = ["regression-from-stable-to-beta", "regression-from-stable-to-nightly"]

[relabel.to-beta]
add-labels = ["regression-from-stable-to-beta"]
rem-labels = ["regression-from-stable-to-stable", "regression-from-stable-to-nightly"]

[review-submitted]
# This label is added when a "request changes" review is submitted.
reviewed_label = "S-waiting-on-author"
Expand Down Expand Up @@ -644,7 +652,7 @@ trigger_files = [
zulip_stream = 245100 # #t-compiler/prioritization/alerts
topic = "#{number} {title}"
message_on_add = """\
@*WG-prioritization/alerts* issue #{number} has been requested for prioritization.
Issue #{number} has been requested for prioritization.
# [Procedure](https://forge.rust-lang.org/compiler/prioritization.html)
- Priority?
Expand Down Expand Up @@ -738,12 +746,12 @@ message_on_reopen = "PR #{number} has been reopened. Pinging @*T-rustdoc*."
[notify-zulip."beta-nominated".compiler]
required_labels = ["T-compiler"]
zulip_stream = 474880 # #t-compiler/backports
topic = "#{number}: beta-backport nomination"
topic = "#{number}: beta-nominated"
message_on_add = [
"""\
PR #{number} "{title}" fixes a regression.
{recipients}, please evaluate nominating this PR for backport.
The following poll is a vibe-check and not binding.
PR #{number} "{title}" fixes a regression and has been nominated for backport.
{recipients}, what do you think about it?
This topic will help T-compiler getting context about it.
""",
"""\
/poll Should #{number} be beta backported?
Expand All @@ -757,7 +765,7 @@ message_on_remove = "PR #{number}'s beta-nomination has been removed."
[notify-zulip."beta-accepted".compiler]
required_labels = ["T-compiler"]
zulip_stream = 474880 # #t-compiler/backports
# Put it in the same thread as beta-nominated.
# Put it in the same topic as beta-nominated.
topic = "#{number}: beta-nominated"
message_on_add = "PR #{number} has been **accepted** for **beta** backport."

Expand Down
Loading