-
Notifications
You must be signed in to change notification settings - Fork 17
/
renovate.json
57 lines (57 loc) · 1.61 KB
/
renovate.json
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
54
55
56
57
{
"extends": ["config:recommended", "schedule:earlyMondays"],
"labels": ["D4-dependencies"],
"branchConcurrentLimit": 5,
"branchPrefix": "renovate-",
"ignorePaths": [".github/**", "**/Dockerfile"],
"packageRules": [
{
"matchFileNames": ["api/package.json"],
"groupName": "api",
"reviewers": ["osipov-mit"],
"addLabels": ["D0-api"],
"rangeStrategy": "pin"
},
{
"matchFileNames": ["idea/frontend/package.json"],
"groupName": "frontend",
"reviewers": ["nikitayutanov"],
"addLabels": ["D1-idea"],
"rangeStrategy": "pin"
},
{
"matchFileNames": ["utils/gear-ui/package.json", "utils/gear-hooks/package.json", "utils/vara-ui/package.json"],
"groupName": "frontend",
"reviewers": ["nikitayutanov"],
"addLabels": ["D2-tools"],
"rangeStrategy": "pin"
},
{
"matchFileNames": [
"idea/api-gateway/package.json",
"idea/common/package.json",
"idea/indexer/package.json",
"idea/test-balance/package.json",
"idea/voucher-indexer/package.json",
"idea/tests/package.json"
],
"groupName": "backend",
"reviewers": ["osipov-mit"],
"addLabels": ["D1-idea"],
"rangeStrategy": "pin"
},
{
"matchFileNames": ["tools/cli/package.json", "tools/txwrapper/package.json"],
"groupName": "tools",
"reviewers": ["osipov-mit"],
"addLabels": ["D2-tools"],
"rangeStrategy": "pin"
},
{
"matchFileNames": ["package.json"],
"groupName": "repo",
"reviewers": ["osipov-mit"],
"rangeStrategy": "pin"
}
]
}