We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7ae8c1 commit 9dca721Copy full SHA for 9dca721
parser/src/command/shortcut.rs
@@ -5,7 +5,7 @@
5
//! The grammar is as follows:
6
//!
7
//! ```text
8
-//! Command: `@bot ready`, or `@bot author`.
+//! Command: `@bot ready`/`@bot review`, or `@bot author`.
9
//! ```
10
11
use crate::error::Error;
@@ -39,6 +39,7 @@ impl ShortcutCommand {
39
pub fn parse<'a>(input: &mut Tokenizer<'a>) -> Result<Option<Self>, Error<'a>> {
40
let mut shortcuts = HashMap::new();
41
shortcuts.insert("ready", ShortcutCommand::Ready);
42
+ shortcuts.insert("review", ShortcutCommand::Ready);
43
shortcuts.insert("author", ShortcutCommand::Author);
44
shortcuts.insert("blocked", ShortcutCommand::Blocked);
45
0 commit comments