-
Notifications
You must be signed in to change notification settings - Fork 5
/
renovate.json
49 lines (49 loc) · 1.25 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
{
"extends": ["config:base"],
"lockFileMaintenance": { "enabled": true, "automerge": true },
"prHourlyLimit": 5,
"labels": ["dependencies"],
"reviewersFromCodeOwners": true,
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true,
"automergeType": "branch"
},
{
"groupName": "ci-actions",
"managers": ["github-actions", "dockerfile"],
"automerge": true,
"automergeType": "branch",
"addLabels": ["deps: ci-actions"]
},
{
"matchPackageNames": "python",
"allowedVersions": "<3.11"
},
{
"matchUpdateTypes": ["major"],
"automerge": false,
"matchPackageNames": ["react", "react-dom", "@types/react", "@types/react-dom"],
"groupName": "react monorepo with types",
"addLabels": ["deps: react"]
},
{
"matchUpdateTypes": ["minor", "patch"],
"groupName": "weekly minor & patch updates",
"schedule": ["before 5am every monday"]
},
{
"matchUpdateTypes": ["minor"],
"addLabels": ["deps: minor"]
},
{
"matchUpdateTypes": ["patch"],
"addLabels": ["deps: patches"]
},
{
"managers": ["npm"],
"addLabels": ["deps: javascript"]
}
]
}