File tree Expand file tree Collapse file tree 1 file changed +3
-12
lines changed Expand file tree Collapse file tree 1 file changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -1755,18 +1755,9 @@ impl<'q> IssuesQuery for Query<'q> {
1755
1755
. get_comment ( & client, fk_initiating_comment. try_into ( ) ?)
1756
1756
. await ?;
1757
1757
1758
- // To avoid constant (and counter-productive) pings we will only ping when
1759
- // - we are 2 weeks into the FCP
1760
- // - or when there are no concerns and we are at least 4 weeks into the FCP.
1761
- //
1762
- // FIXME: This should get T-compiler approval before being enabled by default
1763
- let should_mention = std:: env:: var ( "TRIAGEBOT_COMPILER_MENTION" ) . is_ok ( ) && {
1764
- let now = chrono:: offset:: Utc :: now ( ) ;
1765
- let time_diff = now - init_comment. created_at ;
1766
- time_diff. num_weeks ( ) == 2
1767
- || ( time_diff. num_weeks ( ) >= 4 && fcp. concerns . is_empty ( ) )
1768
- } ;
1769
-
1758
+ // TODO: agree with the team(s) a policy to emit actual mentions to remind FCP
1759
+ // voting member to cast their vote
1760
+ let should_mention = false ;
1770
1761
Some ( crate :: actions:: FCPDetails {
1771
1762
bot_tracking_comment_html_url,
1772
1763
bot_tracking_comment_content,
You can’t perform that action at this time.
0 commit comments