From 501b7137a9f5389d2319bc748fec9bd93a5b5940 Mon Sep 17 00:00:00 2001 From: Vijay Vasudevan Date: Thu, 3 Nov 2016 13:37:37 -0700 Subject: [PATCH] Add a .mention-bot config. (#5386) --- .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 00000000000..6210b1f4d53 --- /dev/null +++ b/.mention-bot @@ -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", +}