forked from tensorflow/tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a .mention-bot config. (tensorflow#5386)
- Loading branch information
Vijay Vasudevan
authored
Nov 3, 2016
1 parent
76b2c06
commit 501b713
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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", | ||
} |