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 patch adds a new Zulip command:
`@triagebot backport <channel> <action> <PR>`
Example:
- `@triagebot backport stable accept 123456`
- `@triagebot backport beta decline 654321`
This can be used to post on GitHub a comment when T-compiler accepts/decline to backport a patch that fixes a regression.
Limitations:
- This command is only available in the `rust-lang/rust` repository
- There is no check on the PR number (in case of mistypes, the comment will go elsewhere)
{channel} backport {verb} as per compiler team [on Zulip]({zulip_link}). A backport PR will be authored by the release team at the end of the current development cycle. Backport labels are handled by them.
45
+
46
+
@rustbot label +{channel}-accepted")
47
+
}
48
+
49
+
fnget_text_backport_declined(
50
+
channel:&BackportChannelArgs,
51
+
verb:&BackportVerbArgs,
52
+
zulip_link:&str,
53
+
) -> String{
54
+
format!(
55
+
"
56
+
{channel} backport {verb} as per compiler team [on Zulip]({zulip_link}).
0 commit comments