-
Notifications
You must be signed in to change notification settings - Fork 50
/
renovate.json
49 lines (49 loc) · 1.39 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", "group:allNonMajor", "schedule:weekly"],
"labels": ["Maintenance 🔨"],
"timezone": "Europe/London",
"packageRules": [
{
"groupName": "internal dependencies",
"groupSlug": "internal",
"matchPackagePatterns": ["^@canonical", "^vanilla-framework"],
"schedule": ["at any time"]
},
{
"matchPackagePatterns": ["^@sentry"],
"enabled": false
},
{
"groupName": "React ecosystem",
"groupSlug": "react-ecosystem",
"matchPackagePatterns": ["^react", "^@types/react"],
"excludePackagePatterns": ["^@canonical"],
"schedule": ["before 5am on monday"]
},
{
"groupName": "Testing libraries",
"groupSlug": "testing-libraries",
"matchPackagePatterns": [
"^@testing-library",
"^jest",
"^cypress",
"^@cypress",
"^@percy"
],
"schedule": ["before 5am on tuesday"]
},
{
"groupName": "Redux ecosystem",
"groupSlug": "redux-ecosystem",
"matchPackagePatterns": ["^redux", "^@reduxjs/toolkit", "^react-redux"],
"schedule": ["before 5am on wednesday"]
},
{
"groupName": "Development tools",
"groupSlug": "dev-tools",
"matchPackageNames": ["typescript", "eslint", "prettier", "nodemon"],
"matchUpdateTypes": ["minor", "patch"],
"schedule": ["before 5am on thursday"]
}
]
}