forked from RishabhK103/claude-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
57 lines (55 loc) · 1.64 KB
/
renovate.json
File metadata and controls
57 lines (55 loc) · 1.64 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
50
51
52
53
54
55
56
57
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"timezone": "America/New_York",
"schedule": ["every weekend"],
"packageRules": [
{
"description": "Auto-merge patch updates when CI passes",
"matchUpdateTypes": ["patch"],
"automerge": true,
"automergeType": "squash",
"automergeStrategy": "rebase"
},
{
"description": "Group minor updates into a single weekly PR",
"matchUpdateTypes": ["minor"],
"groupName": "minor dependencies",
"schedule": ["every monday"]
},
{
"description": "Major updates require manual review",
"matchUpdateTypes": ["major"],
"automerge": false,
"labels": ["dependencies", "major-update"]
},
{
"description": "Merge security fixes immediately",
"matchDepTypes": ["vulnerabilities"],
"schedule": ["at any time"],
"automerge": true,
"labels": ["security"]
},
{
"description": "Keep Next.js and React updates together",
"matchPackageNames": ["next", "react", "react-dom", "@types/react", "@types/react-dom"],
"groupName": "React / Next.js"
},
{
"description": "Group all Radix UI packages",
"matchPackagePrefixes": ["@radix-ui/"],
"groupName": "Radix UI"
},
{
"description": "Bun version managed separately",
"matchPackageNames": ["bun"],
"automerge": false
}
],
"ignoreDeps": [],
"labels": ["dependencies"],
"prCreation": "immediate",
"rebaseWhen": "behind-base-branch",
"dependencyDashboard": true,
"dependencyDashboardTitle": "Renovate Dependency Dashboard"
}