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
Copy file name to clipboardExpand all lines: src/zulip.rs
+14-4Lines changed: 14 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -43,19 +43,21 @@ use tracing::log;
43
43
fnget_text_backport_approved(
44
44
channel:&BackportChannelArgs,
45
45
verb:&BackportVerbArgs,
46
+
team_name:&str,
46
47
zulip_link:&str,
47
48
) -> String{
48
49
format!(
49
-
"{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."
50
+
"{channel} backport {verb} as per {team_name} 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."
50
51
)
51
52
}
52
53
53
54
fnget_text_backport_declined(
54
55
channel:&BackportChannelArgs,
55
56
verb:&BackportVerbArgs,
57
+
team_name:&str,
56
58
zulip_link:&str,
57
59
) -> String{
58
-
format!("{channel} backport {verb} as per compiler team [on Zulip]({zulip_link}).")
60
+
format!("{channel} backport {verb} as per {team_name} team [on Zulip]({zulip_link}).")
0 commit comments