From 9d89f569c4973c334fac6871a52d59eee16e9d52 Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Tue, 11 Jul 2017 08:20:42 -0400 Subject: [PATCH] Add mention bot In order to deploy https://github.com/facebook/mention-bot it's good to have a .mention-bot file in the root directory. This PR adds that said file as well as creates a user blacklist so maintainer alumni aren't needlessly pinged. --- .mention-bot | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .mention-bot diff --git a/.mention-bot b/.mention-bot new file mode 100644 index 00000000..3cd11f22 --- /dev/null +++ b/.mention-bot @@ -0,0 +1,11 @@ +{ + "maxReviewers": 3, // 3 is enough + "numFilesToCheck": 5, + "message": "@pullRequester, thanks! @reviewers, please review this.", + "findPotentialReviewers": true, + "fileBlacklist": ["*.md"], // ignore documentation + "userBlacklist": ["ngtuna", "janetkuo", "sebgoa"], // explicitly ignore pinging alumni + "assignToReviewer": false, + "createReviewRequest": true, + "createComment": true, +}