forked from mrsimpson/responsible-vibe-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
79 lines (79 loc) · 2.37 KB
/
renovate.json
File metadata and controls
79 lines (79 loc) · 2.37 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"description": "Frictionless Renovate configuration with automerge when CI passes",
"platformAutomerge": true,
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "squash",
"semanticCommits": "enabled",
"semanticCommitType": "chore",
"semanticCommitScope": "deps",
"prConcurrentLimit": 5,
"prHourlyLimit": 3,
"schedule": [
"after 10pm every weekday",
"before 5am every weekday",
"every weekend"
],
"packageRules": [
{
"description": "Automerge patch updates - safest changes",
"matchUpdateTypes": ["patch"],
"automerge": true,
"addLabels": ["automerge", "patch"]
},
{
"description": "Automerge dev dependencies - testing/build tools",
"matchDepTypes": ["devDependencies"],
"automerge": true,
"addLabels": ["automerge", "dev-deps"]
},
{
"description": "Group and automerge TypeScript ecosystem",
"matchPackageNames": ["typescript", "@types/**"],
"groupName": "TypeScript",
"automerge": true,
"addLabels": ["typescript"]
},
{
"description": "Group testing dependencies",
"matchPackageNames": ["vitest", "@vitest/**", "jsdom", "@types/jsdom"],
"groupName": "Testing",
"automerge": true,
"addLabels": ["testing"]
},
{
"description": "Group build tools",
"matchPackageNames": ["tsx", "vite-node", "@rollup/**", "actions/"],
"groupName": "Build Tools",
"automerge": true,
"addLabels": ["build"]
},
{
"description": "Manual review for major updates",
"matchUpdateTypes": ["major"],
"automerge": false,
"addLabels": ["major-update", "needs-review"]
},
{
"description": "Careful with core dependencies - manual review for minor+",
"matchPackageNames": ["@modelcontextprotocol/sdk"],
"matchUpdateTypes": ["minor", "major"],
"automerge": false,
"addLabels": ["core-dependency", "needs-review"]
}
],
"vulnerabilityAlerts": {
"enabled": true,
"automerge": true,
"addLabels": ["security", "automerge"]
},
"lockFileMaintenance": {
"enabled": true,
"automerge": true,
"schedule": ["before 4am on monday"],
"addLabels": ["lockfile-maintenance"]
},
"suppressNotifications": ["prIgnoreNotification"]
}