Add a .mention-bot config. (#5386)

This commit is contained in:
Vijay Vasudevan 2016-11-03 13:37:37 -07:00 committed by GitHub
parent 76b2c0630b
commit 501b7137a9

11
.mention-bot Normal file
View File

@ -0,0 +1,11 @@
{
"maxReviewers": 2,
"numFilesToCheck": 10, // Number of files to check against, default is 5
"userBlacklist": ["tensorflower-gardener"], // users in this list will never be mentioned by mention-bot
"requiredOrgs": ["tensorflow"], // mention-bot will only mention user who are a member of one of these organizations
"skipAlreadyAssignedPR": true, // mention-bot will ignore already assigned PR's
"skipAlreadyMentionedPR": true, // mention-bot will ignore if there is already existing an exact mention
"skipTitle": "Branch", // mention-bot will ignore PR that includes text in the title,
"delayed": true, // mention-bot will wait to comment until specified time in `delayedUntil` value
"delayedUntil": "10m",
}