-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.mention-bot
53 lines (53 loc) · 1.8 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"maxReviewers": 2, // Maximum number of people to ping in the PR message, default is 3
"numFilesToCheck": 10, // Number of files to check against, default is 5
"alwaysNotifyForPaths": [], // users will always be mentioned based on file glob
"fallbackNotifyForPaths": [
{
"name": "Lakate",
"files": ["*.*"]
},
{
"name": "Dotokoto",
"files": ["*.*"]
},
{
"name": "gogoleff",
"files": ["*.*"]
},
{
"name": "Mokoshka",
"files": ["*.*"]
},
{
"name": "Nikit0s",
"files": ["*.*"]
},
{
"name": "sorovlad",
"files": ["*.*"]
},
{
"name": "Valeriyan",
"files": ["*.*"]
},
{
"name": "VasiliiKuznecov",
"files": ["*.*"]
},
{
"name": "xiiivii",
"files": ["*.*"]
},
{
"name": "VorontsovMaxim",
"files": ["*.*"]
}
], // users will be mentioned based on file glob if no other user was found
"findPotentialReviewers": true, // mention-bot will try to find potential reviewers based on files history, if disabled, `alwaysNotifyForPaths` is used instead
"fileBlacklist": [], // 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"
}