-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathrenovate.json
More file actions
49 lines (49 loc) · 1.18 KB
/
Copy pathrenovate.json
File metadata and controls
49 lines (49 loc) · 1.18 KB
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", "helpers:pinGitHubActionDigests"],
"minimumReleaseAge": "3 days",
"semanticCommits": "disabled",
"packageRules": [
{
"groupName": "changesets",
"matchPackageNames": ["/^@changesets//"]
},
{
"groupName": "oxc",
"matchPackageNames": ["/^oxlint/", "/^oxfmt/"]
},
{
"groupName": "react",
"matchPackageNames": ["react", "react-dom", "/^@types/react/"]
},
{
"matchPackageNames": [
"pnpm",
"/^@types//",
"/^oxlint/",
"/^oxfmt/",
"/^rolldown/",
"/^vite/",
"/^vitest/",
"/^typescript/",
"/^@testing-library//",
"jsdom"
],
"automerge": true,
"automergeType": "pr",
"platformAutomerge": true
},
{
"matchPackageNames": ["lint-staged"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true,
"automergeType": "pr",
"platformAutomerge": true
},
{
"matchManagers": ["github-actions"],
"matchPackageNames": ["actions/**", "github/**"],
"pinDigests": false
}
]
}