소스 검색

Fix topic links to include repository

For now limit to just compiler-team.
Mark Rousskov 5 년 전
부모
커밋
764034cb51
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/handlers/major_change.rs

+ 1 - 1
src/handlers/major_change.rs

@@ -131,7 +131,7 @@ async fn handle_input(
     labels.push(github::Label { name: label_to_add });
     let github_req = issue.set_labels(&ctx.github, labels);
 
-    let mut zulip_topic = format!("#{} {}", issue.number, issue.title);
+    let mut zulip_topic = format!("compiler-team#{} {}", issue.number, issue.title);
     zulip_topic.truncate(60); // Zulip limitation
 
     let zulip_stream = config.zulip_stream.to_string();