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.
This commit is contained in:
Charlie Drage 2017-07-11 08:20:42 -04:00
parent 51a488c3bc
commit 9d89f569c4

11
.mention-bot Normal file
View File

@ -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,
}