-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrenovate.json
More file actions
82 lines (77 loc) · 2.81 KB
/
Copy pathrenovate.json
File metadata and controls
82 lines (77 loc) · 2.81 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
80
81
82
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard",
":semanticCommits",
"helpers:pinGitHubActionDigests"
],
"timezone": "Europe/Berlin",
"schedule": ["before 6am on monday"],
"prConcurrentLimit": 5,
"prHourlyLimit": 2,
"labels": ["dependencies"],
"rangeStrategy": "bump",
"rebaseWhen": "conflicted",
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 6am on the first day of the month"]
},
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["dependencies", "security"],
"schedule": ["at any time"],
"prPriority": 10,
"minimumReleaseAge": null
},
"osvVulnerabilityAlerts": true,
"minimumReleaseAge": "3 days",
"packageRules": [
{
"description": "Group all non-major devDependencies into one PR — low risk, high volume.",
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "devDependencies (non-major)"
},
{
"description": "Group type definitions; they move constantly and rarely break anything alone.",
"matchPackageNames": ["@types/**"],
"groupName": "type definitions"
},
{
"description": "Vue ecosystem moves in lockstep — upgrading one without the others breaks builds.",
"matchPackageNames": ["vue", "vue-router", "vue-tsc", "@vitejs/plugin-vue", "vite"],
"groupName": "vue + vite"
},
{
"description": "PrimeVue and its theming are tightly coupled.",
"matchPackageNames": ["primevue", "primeicons", "@primevue/**", "@primeuix/**"],
"groupName": "primevue"
},
{
"description": "Fastify core and its plugins must move together.",
"matchPackageNames": ["fastify", "@fastify/**"],
"groupName": "fastify"
},
{
"description": "Mongoose majors change query and index semantics — never batch these.",
"matchPackageNames": ["mongoose", "mongodb"],
"matchUpdateTypes": ["major"],
"dependencyDashboardApproval": true,
"addLabels": ["needs-manual-review"]
},
{
"description": "Majors always land alone and are never auto-merged.",
"matchUpdateTypes": ["major"],
"automerge": false,
"addLabels": ["needs-manual-review"]
},
{
"description": "Pin the Node major to what the Dockerfile actually runs.",
"matchPackageNames": ["node"],
"matchUpdateTypes": ["major"],
"enabled": false
}
],
"_comment_automerge": "Automerge is deliberately OFF everywhere. Renovate merging green PRs is only safe when CI actually runs the suite on each PR; there is no CI pipeline in this repo yet. Once a workflow runs `npm test` and `vue-tsc --noEmit` on pull requests, enable automerge for the devDependencies and type-definition groups first."
}