forked from m-torin/next-enterprise-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
161 lines (161 loc) · 3.75 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"baseBranches": [
"newMain"
],
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"minimumReleaseAge": "3 days",
"rangeStrategy": "pin",
"packageRules": [
{
"matchManagers": [
"npm"
],
"rangeStrategy": "replace",
"postUpdateOptions": [
"pnpmDedupe"
]
},
{
"description": "Group Sentry-related updates",
"groupName": "Sentry Ecosystem",
"prPriority": 9,
"automerge": true,
"automergeType": "squash",
"matchPackageNames": [
"/^@sentry/.*/",
"/^sentry-.*/",
"/^sentry$/"
]
},
{
"description": "Group ESLint and Stylelint-related updates",
"groupName": "Linting Tools",
"prPriority": 8,
"automerge": true,
"automergeType": "squash",
"matchPackageNames": [
"/^eslint.*/",
"/^stylelint.*/",
"/^@typescript-eslint/.*/"
]
},
{
"description": "Group Jest and Testing Library-related updates",
"groupName": "Testing Tools",
"prPriority": 8,
"automerge": true,
"automergeType": "squash",
"matchPackageNames": [
"/^jest.*/",
"/^@testing-library/.*/"
]
},
{
"description": "Group Storybook and Chroma-js-related updates",
"groupName": "Storybook & Chroma-js",
"prPriority": 8,
"automerge": true,
"automergeType": "squash",
"matchPackageNames": [
"/^@storybook/.*/",
"/^storybook.*/",
"/^chroma-js$/"
]
},
{
"description": "Group Next.js and React-related updates",
"groupName": "React & Next.js Ecosystem",
"prPriority": 7,
"matchPackageNames": [
"/^next$/",
"/^@types/next$/",
"/^next-auth$/",
"/^@types/next-auth$/",
"/^react$/",
"/^react-dom$/",
"/^@types/react$/",
"/^@types/react-dom$/"
]
},
{
"description": "Group Mantine and Zod-related updates",
"groupName": "Mantine and Zod Ecosystem",
"prPriority": 8,
"automerge": true,
"automergeType": "squash",
"matchPackageNames": [
"/^mantine-.*/",
"/^@mantine/.*/",
"/.*zod.*/"
]
},
{
"matchUpdateTypes": [
"minor",
"patch",
"pin",
"digest"
],
"groupName": "All Non-Major Updates",
"automerge": true,
"automergeType": "squash",
"prPriority": 10,
"matchPackageNames": [
"!/^mantine-.*/",
"!/^@mantine/.*/",
"!/.*zod.*/",
"!/^react$/",
"!/^react-dom$/",
"!/^@types/react$/",
"!/^@types/react-dom$/",
"!/^next$/",
"!/^@types/next$/",
"!/^next-auth$/",
"!/^@types/next-auth$/",
"!/^@sentry/.*/",
"!/^sentry-.*/",
"!/^sentry$/",
"!/^eslint.*/",
"!/^stylelint.*/",
"!/^@typescript-eslint/.*/",
"!/^jest.*/",
"!/^@testing-library/.*/",
"!/^@storybook/.*/",
"!/^storybook.*/",
"!/^chroma-js$/"
]
},
{
"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
}
]
}