浏览代码

Support @rustbot review (#1615)

This is a nice alias for @rustbot ready and can flow off memory slightly more
smoothly.
Mark Rousskov 2 年之前
父节点
当前提交
9dca721fb4
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      parser/src/command/shortcut.rs

+ 2 - 1
parser/src/command/shortcut.rs

@@ -5,7 +5,7 @@
 //! The grammar is as follows:
 //!
 //! ```text
-//! Command: `@bot ready`, or `@bot author`.
+//! Command: `@bot ready`/`@bot review`, or `@bot author`.
 //! ```
 
 use crate::error::Error;
@@ -39,6 +39,7 @@ impl ShortcutCommand {
     pub fn parse<'a>(input: &mut Tokenizer<'a>) -> Result<Option<Self>, Error<'a>> {
         let mut shortcuts = HashMap::new();
         shortcuts.insert("ready", ShortcutCommand::Ready);
+        shortcuts.insert("review", ShortcutCommand::Ready);
         shortcuts.insert("author", ShortcutCommand::Author);
         shortcuts.insert("blocked", ShortcutCommand::Blocked);