Skip to content
Merged
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
64 changes: 64 additions & 0 deletions triagebot.toml
Original file line number Diff line number Diff line change
Expand Up @@ -704,6 +704,9 @@ message_on_reopen = "Issue #{number} has been reopened. Pinging @*T-types*."
# Zulip notifications
# ------------------------------------------------------------------------------


# --- rustdoc-------------------------------------------------------------------

[notify-zulip."beta-nominated".rustdoc]
required_labels = ["T-rustdoc"]
zulip_stream = 266220 # #t-rustdoc
Expand Down Expand Up @@ -768,6 +771,8 @@ message_on_close = "PR #{number} has been closed. Thanks for participating!"
message_on_reopen = "PR #{number} has been reopened. Pinging @*T-rustdoc*."


# --- compiler -----------------------------------------------------------------

[notify-zulip."beta-nominated".compiler]
required_labels = ["T-compiler"]
zulip_stream = 474880 # #t-compiler/backports
Expand Down Expand Up @@ -829,6 +834,9 @@ zulip_stream = 474880 # #t-compiler/backports
topic = "#{number}: stable-nominated"
message_on_add = "PR #{number} has been **accepted** for **stable** backport."


# --- libs ---------------------------------------------------------------------

[notify-zulip."beta-nominated".libs]
required_labels = ["T-libs"]
zulip_stream = 542373 # #t-libs/backports
Expand Down Expand Up @@ -879,6 +887,8 @@ topic = "#{number}: stable-nominated"
message_on_add = "PR #{number} has been **accepted** for **stable** backport."


# --- bootstrap ----------------------------------------------------------------

[notify-zulip."beta-nominated".bootstrap]
required_labels = ["T-bootstrap"]
zulip_stream = 507486 # #t-infra/bootstrap/backports
Expand Down Expand Up @@ -929,6 +939,60 @@ topic = "#{number}: stable-nominated"
message_on_add = "PR #{number} has been **accepted** for **stable** backport."


# --- rustfmt ------------------------------------------------------------------

[notify-zulip."beta-nominated".rustfmt]
required_labels = ["T-rustfmt"]
zulip_stream = 621384 # #t-rustfmt/backports
topic = "#{number}: beta-nominated"
message_on_add = [
"""\
@*T-rustfmt* @*T-rustfmt-contributors* PR #{number} "{title}" has been nominated
for beta backport.
""",
"""\
/poll Approve beta backport of #{number}?
approve
decline
don't know
""",
]
message_on_remove = "PR #{number}'s beta-nomination has been removed."

[notify-zulip."beta-accepted".rustfmt]
required_labels = ["T-rustfmt"]
zulip_stream = 621384 # #t-rustfmt/backports
# Put it in the same thread as beta-nominated.
topic = "#{number}: beta-nominated"
message_on_add = "PR #{number} has been **accepted** for **beta** backport."

[notify-zulip."stable-nominated".rustfmt]
required_labels = ["T-rustfmt"]
zulip_stream = 621384 # #t-rustfmt/backports
topic = "#{number}: stable-nominated"
message_on_add = [
"""\
@*T-rustfmt* @*T-rustfmt-contributors* PR #{number} "{title}" has been nominated
for stable backport.
""",
"""\
/poll Approve stable backport of #{number}?
approve
approve (but does not justify new dot release on its own)
decline
don't know
""",
]
message_on_remove = "PR #{number}'s stable-nomination has been removed."

[notify-zulip."stable-accepted".rustfmt]
required_labels = ["T-rustfmt"]
zulip_stream = 621384 # #t-rustfmt/backports
# Put it in the same thread as stable-nominated.
topic = "#{number}: stable-nominated"
message_on_add = "PR #{number} has been **accepted** for **stable** backport."


[notify-zulip."A-edition-2021"]
required_labels = ["C-bug"]
zulip_stream = 268952 # #edition
Expand Down
Loading