From fd01495214c948bbb0fcc572195c8898bd34151d Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Sun, 7 Jun 2026 16:53:02 +0200 Subject: [PATCH] FCPs can be initiated by non-team-members --- src/github/nag.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/github/nag.rs b/src/github/nag.rs index 0e159c1..9bdbb6a 100644 --- a/src/github/nag.rs +++ b/src/github/nag.rs @@ -1205,7 +1205,7 @@ impl<'a> RfcBotComment<'a> { question, ref teams, } => { - let mut msg = String::from("Team member @"); + let mut msg = String::from("@"); msg.push_str(&initiator.login); msg.push_str(" has asked teams: "); msg.extend(Itertools::intersperse(teams.iter().cloned(), ", ")); @@ -1220,7 +1220,7 @@ impl<'a> RfcBotComment<'a> { } CommentType::FcpProposed(initiator, disposition, reviewers, concerns) => { - let mut msg = String::from("Team member @"); + let mut msg = String::from("@"); msg.push_str(&initiator.login); msg.push_str(" has proposed to "); msg.push_str(disposition.repr());