瀏覽代碼

More detailed Zulip announcement message for major changes

Mark Rousskov 4 年之前
父節點
當前提交
4a16e3a351
共有 1 個文件被更改,包括 12 次插入5 次删除
  1. 12 5
      src/handlers/major_change.rs

+ 12 - 5
src/handlers/major_change.rs

@@ -127,11 +127,18 @@ async fn handle_input(
                 cmnt.post(&ctx.github).await?;
                 cmnt.post(&ctx.github).await?;
                 return Ok(());
                 return Ok(());
             }
             }
-            (format!(
-                "A new proposal has been announced: [#{}]({}). It will be brought up at the next meeting.",
-                issue.number,
-                event.html_url().unwrap()
-            ), config.meeting_label.clone())
+            (
+                format!(
+                    "A new proposal has been announced: [#{}]({}). It will be
+                announced at the next meeting to try and draw attention to it,
+                but usually MCPs are not discussed during triage meetings. If
+                you think this would benefit from discussion amongst the
+                compiler team, consider proposing a design meeting.",
+                    issue.number,
+                    event.html_url().unwrap()
+                ),
+                config.meeting_label.clone(),
+            )
         }
         }
     };
     };