瀏覽代碼

add todo comment

chaz-kiker 3 年之前
父節點
當前提交
3f56b70ac2
共有 2 個文件被更改,包括 15 次插入1 次删除
  1. 1 1
      src/handlers/assign.rs
  2. 14 0
      src/handlers/note.rs

+ 1 - 1
src/handlers/assign.rs

@@ -52,7 +52,7 @@ pub(super) async fn handle_command(
                 return Ok(());
             }
         };
-        // Don't re-assign if aleady assigned, e.g. on comment edit
+        // Don't re-assign if already assigned, e.g. on comment edit
         if issue.contain_assignee(&username) {
             log::trace!(
                 "ignoring assign PR {} to {}, already assigned",

+ 14 - 0
src/handlers/note.rs

@@ -21,5 +21,19 @@ pub(super) async fn handle_command(
     cmd: NoteCommand,
 ) -> anyhow::Result<()> {
     log::debug!("Handling Note Command");
+
+    // TODO: edit the original post to include:
+    //
+    // ```md
+    // <!-- start rustbot summary-->
+    // - [title](LINK_TO_SUMMARY_COMMENT)
+    // <!-- end rustbot summary-->
+    // ```
+
+    let issue = event.issue().unwrap();
+    if issue.is_pr() {
+        let NoteCommand::Summary { title, summary } = &cmd;
+        log::debug!("Note: {}, {}", title, summary);
+    }
     Ok(())
 }