Fix config that makes file not json parseable.

Verified by loading file using python json.
This commit is contained in:
Vijay Vasudevan 2016-11-04 10:59:32 -07:00 committed by GitHub
parent 9ff79e057f
commit 9653eebf38

View File

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