-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrenovate.json
80 lines (80 loc) · 1.88 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "All Non-Major Updates",
"excludePackageNames": [
"mantine-*",
"@mantine/*",
"*zod*",
"react",
"react-dom",
"@types/react",
"@types/react-dom",
"next",
"@types/next",
"next-auth",
"@types/next-auth"
],
"automerge": true,
"automergeType": "squash",
"prPriority": 10
},
{
"description": "Group Mantine and Zod-related updates",
"matchPackageNames": ["mantine-*", "@mantine/*", "*zod*"],
"groupName": "Mantine and Zod ecosystem",
"prPriority": 8
},
{
"description": "Group React-related updates",
"matchPackageNames": [
"react",
"react-dom",
"@types/react",
"@types/react-dom"
],
"groupName": "React ecosystem",
"prPriority": 6
},
{
"description": "Group Next.js updates",
"matchPackageNames": [
"next",
"@types/next",
"next-auth",
"@types/next-auth"
],
"groupName": "Next.js ecosystem",
"prPriority": 5
},
{
"description": "Major updates require approval from the dashboard",
"matchUpdateTypes": ["major"],
"dependencyDashboardApproval": true,
"prPriority": 4
},
{
"matchManagers": ["dockerfile"],
"groupName": "Dockerfile Image Updates",
"automerge": true,
"automergeType": "squash",
"prPriority": 2
},
{
"matchManagers": ["docker-compose"],
"groupName": "Docker Compose Image Updates",
"automerge": true,
"automergeType": "squash",
"prPriority": 1
},
{
"matchPackageNames": ["sass"],
"enabled": false
},
{
"matchManagers": ["npm"],
"postUpdateOptions": ["pnpmDedupe"]
}
]
}