aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Vijay Vasudevan <vrv@google.com>2016-11-04 10:59:32 -0700
committerGravatar GitHub <noreply@github.com>2016-11-04 10:59:32 -0700
commit9653eebf387ee9c2758bb8dfc81d0452fd8488d1 (patch)
treef8eaf5f47f3f8af6192800cd7cb23337240e525d
parent9ff79e057ff4f515968735dcfaf370ea1bbeaa2d (diff)
Fix config that makes file not json parseable.
Verified by loading file using python json.
-rw-r--r--.mention-bot16
1 files changed, 8 insertions, 8 deletions
diff --git a/.mention-bot b/.mention-bot
index 6210b1f4d5..9e4858977f 100644
--- a/.mention-bot
+++ b/.mention-bot
@@ -1,11 +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",
+ "numFilesToCheck": 10,
+ "userBlacklist": ["tensorflower-gardener"],
+ "requiredOrgs": ["tensorflow"],
+ "skipAlreadyAssignedPR": true,
+ "skipAlreadyMentionedPR": true,
+ "skipTitle": "Branch",
+ "delayed": true,
+ "delayedUntil": "10m"
}