瀏覽代碼

Merge pull request #1684 from apiraino/add-detail-to-contributing-pr

Add detail to PR welcome msg
Mark Rousskov 2 年之前
父節點
當前提交
5c79a78c82
共有 1 個文件被更改,包括 7 次插入2 次删除
  1. 7 2
      src/handlers/assign.rs

+ 7 - 2
src/handlers/assign.rs

@@ -41,8 +41,13 @@ 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.";
 
-const CONTRIBUTION_MESSAGE: &str = "\
-Please see [the contribution instructions]({contributing_url}) for more information.";
+const CONTRIBUTION_MESSAGE: &str = "Please see [the contribution
+instructions]({contributing_url}) for more information. Namely, in order to ensure the
+minimum review times lag, PR authors and assigned reviewers should ensure that the review
+label (`S-waiting-on-review` and `S-waiting-on-author`) stays updated, invoking these commands \
+when appropriate:\n \
+`@rustbot author`: the review is finished, PR author should check the comments and take action accordingly \
+`@rustbot review`: the author is ready for a review, this PR will be queued again in the reviewer's queue";
 
 const WELCOME_WITH_REVIEWER: &str = "@{assignee} (or someone else)";