-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathrenovate.json
More file actions
160 lines (160 loc) · 4.39 KB
/
Copy pathrenovate.json
File metadata and controls
160 lines (160 loc) · 4.39 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
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"timezone": "Asia/Shanghai",
"labels": [
"dependencies"
],
"dependencyDashboard": true,
"commitMessagePrefix": "fix(deps)",
"commitMessageTopic": "{{depName}}",
"rangeStrategy": "bump",
"ignorePaths": [
"skills/wow-migrate/evals/fixtures/**"
],
"minimumReleaseAge": "12 hours",
"prHourlyLimit": 10,
"prConcurrentLimit": 20,
"lockFileMaintenance": {
"enabled": true,
"schedule": [
"before 3pm on monday"
],
"commitMessageTopic": "lock files",
"minimumReleaseAge": null
},
"packageRules": [
{
"description": "Require manual approval for major version updates.",
"matchUpdateTypes": [
"major"
],
"dependencyDashboardApproval": true
},
{
"description": "Group GitHub Actions updates.",
"matchManagers": [
"github-actions"
],
"groupName": "github-actions",
"commitMessageTopic": "GitHub Actions"
},
{
"description": "Group Spring Boot, Spring Framework, and Springdoc updates.",
"matchDatasources": [
"maven"
],
"matchPackageNames": [
"/^org\\.springframework[.:]/",
"/^org\\.springdoc:/"
],
"groupName": "spring",
"commitMessageTopic": "Spring ecosystem"
},
{
"description": "Group Kotlin compiler, Kotlin plugins, KSP, and Kotlin compile-testing updates.",
"matchPackageNames": [
"/^org\\.jetbrains\\.kotlin([.:]|$)/",
"/^com\\.google\\.devtools\\.ksp([.:]|$)/",
"dev.zacsweers.kctfork:ksp"
],
"groupName": "kotlin",
"commitMessageTopic": "Kotlin toolchain"
},
{
"description": "Group OpenTelemetry core and instrumentation BOMs so API/SDK and instrumentation stay aligned.",
"matchDatasources": [
"maven"
],
"matchPackageNames": [
"io.opentelemetry:opentelemetry-bom",
"io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom"
],
"groupName": "opentelemetry",
"commitMessageTopic": "OpenTelemetry BOMs"
},
{
"description": "Keep OpenTelemetry semantic conventions visible because this artifact is alpha-versioned independently.",
"matchDatasources": [
"maven"
],
"matchPackageNames": [
"io.opentelemetry:opentelemetry-semconv"
],
"commitMessageTopic": "OpenTelemetry semantic conventions"
},
{
"description": "Group Ahoo platform BOM updates used by wow-dependencies.",
"matchDatasources": [
"maven"
],
"matchPackageNames": [
"me.ahoo.cosid:cosid-bom",
"me.ahoo.simba:simba-bom",
"me.ahoo.coapi:coapi-bom",
"me.ahoo.cocache:cocache-bom"
],
"groupName": "ahoo-platform-boms",
"commitMessageTopic": "Ahoo platform BOMs"
},
{
"description": "Group Ahoo Fetcher packages because the dashboard uses the generated client stack as one version family.",
"matchDatasources": [
"npm"
],
"matchPackageNames": [
"/^@ahoo-wang\\/fetcher/"
],
"groupName": "fetcher",
"commitMessageTopic": "Fetcher packages"
},
{
"description": "Group React runtime packages used by the compensation dashboard.",
"matchDatasources": [
"npm"
],
"matchPackageNames": [
"react",
"react-dom",
"@types/react",
"@types/react-dom",
"react-router"
],
"groupName": "react",
"commitMessageTopic": "React ecosystem"
},
{
"description": "Group Vite and Vitest tooling used by the compensation dashboard.",
"matchDatasources": [
"npm"
],
"matchPackageNames": [
"vite",
"@vitejs/plugin-react",
"vitest",
"@vitest/coverage-v8",
"@vitest/ui",
"vitest-browser-react",
"vite-bundle-analyzer"
],
"groupName": "vite-vitest",
"commitMessageTopic": "Vite and Vitest"
},
{
"description": "Group VitePress documentation tooling.",
"matchDatasources": [
"npm"
],
"matchPackageNames": [
"vitepress",
"vitepress-plugin-llms",
"vitepress-plugin-mermaid",
"mermaid"
],
"groupName": "vitepress",
"commitMessageTopic": "VitePress documentation"
}
]
}