Skip to content

Commit

Permalink
Update auto-assignment message
Browse files Browse the repository at this point in the history
  • Loading branch information
oli-obk committed Feb 6, 2024
1 parent df574c1 commit ef9d7c1
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/handlers/assign.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ mod tests {
}

const NEW_USER_WELCOME_MESSAGE: &str = "Thanks for the pull request, and welcome! \
The Rust team is excited to review your changes, and you should hear from {who} soon.";
The Rust team is excited to review your changes, and you should hear from {who} \
some time within the next week.";

const CONTRIBUTION_MESSAGE: &str = "Please see [the contribution \
instructions]({contributing_url}) for more information. Namely, in order to ensure the \
Expand All @@ -56,7 +57,11 @@ const WELCOME_WITHOUT_REVIEWER: &str = "@Mark-Simulacrum (NB. this repo may be m

const RETURNING_USER_WELCOME_MESSAGE: &str = "r? @{assignee}
({bot} has picked a reviewer for you, use r? to override)";
{bot} has assigned @{assignee}.
They will have a look at your PR within the next week and either review your PR or
reassign to another reviewer.
Use r? to explicitly pick a reviewer";

const RETURNING_USER_WELCOME_MESSAGE_NO_REVIEWER: &str =
"@{author}: no appropriate reviewer found, use r? to override";
Expand Down

0 comments on commit ef9d7c1

Please sign in to comment.