-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.mention-bot
41 lines (41 loc) · 1.36 KB
/
.mention-bot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"maxReviewers": 7, // Maximum number of people to ping in the PR message
"numFilesToCheck": 10, // Number of files to check against
"alwaysNotifyForPaths": [], // users will always be mentioned based on file glob
"fallbackNotifyForPaths": [
{
"name": "danmir",
"files": ["*.*"]
},
{
"name": "Lucifer-is-my-pet",
"files": ["*.*"]
},
{
"name": "mironov-alexey",
"files": ["*.*"]
},
{
"name": "NikShel",
"files": ["*.*"]
},
{
"name": "vetoshko",
"files": ["*.*"]
},
{
"name": "Victoria-Vladimirova",
"files": ["*.*"]
},
{
"name": "Dodo888",
"files": ["*.*"]
}
], // users will be mentioned based on file glob if no other user was found
"findPotentialReviewers": true, // mention-bot will try to findIndex potential reviewers based on files history
"fileBlacklist": ["*.md", "package.json"], // mention-bot will ignore any files that match these file globs
"userBlacklist": [], // users in this list will never be mentioned by mention-bot
"userBlacklistForPR": [], // PR made by users in this list will be ignored
"requiredOrgs": ["urfu-2015"], // mention-bot will only mention user who are a member of one of these organizations
"actions": ["opened"] // List of PR actions that mention-bot will listen to, default is "opened"
}