Skip to content

Commit 0f23b50

Browse files
renovate[bot]trask
andauthored
chore(config): migrate renovate config (#2131)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Trask Stalnaker <[email protected]>
1 parent ddcc708 commit 0f23b50

File tree

1 file changed

+20
-12
lines changed

1 file changed

+20
-12
lines changed

.github/renovate.json5

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,34 @@
1010
],
1111
prHourlyLimit: 5, // we have a large number of parallel runners
1212
labels: [
13-
'dependencies'
13+
'dependencies',
1414
],
1515
packageRules: [
1616
{
1717
// reduces the number of Renovate PRs
1818
// (patch updates are typically non-breaking)
19-
"groupName": "all patch versions",
20-
"matchUpdateTypes": ["patch"],
21-
"schedule": ["before 8am every weekday"]
19+
groupName: 'all patch versions',
20+
matchUpdateTypes: [
21+
'patch',
22+
],
23+
schedule: [
24+
'before 8am every weekday',
25+
],
2226
},
2327
{
2428
// avoids these Renovate PRs from trickling in throughout the week
2529
// (consolidating the review process)
26-
"matchUpdateTypes": ["minor", "major"],
27-
"excludePackageNames": [
28-
// want OpenTelemetry package updates right away
29-
'io.opentelemetry:**',
30-
'io.opentelemetry.*:**',
30+
matchUpdateTypes: [
31+
'minor',
32+
'major',
33+
],
34+
schedule: [
35+
'before 8am on Monday',
36+
],
37+
matchPackageNames: [
38+
'!io.opentelemetry:**',
39+
'!io.opentelemetry.*:**',
3140
],
32-
"schedule": ["before 8am on Monday"]
3341
},
3442
{
3543
matchPackageNames: [
@@ -176,7 +184,7 @@
176184
customType: 'regex',
177185
datasourceTemplate: 'npm',
178186
managerFilePatterns: [
179-
'.github/workflows/**'
187+
'.github/workflows/**',
180188
],
181189
matchStrings: [
182190
'npx (?<depName>[^@]+)@(?<currentValue>[^\\s]+)',
@@ -186,7 +194,7 @@
186194
customType: 'regex',
187195
datasourceTemplate: 'java-version',
188196
managerFilePatterns: [
189-
'.github/workflows/**'
197+
'.github/workflows/**',
190198
],
191199
matchStrings: [
192200
'(?<currentValue>\\d+) # renovate: datasource=java-version',

0 commit comments

Comments
 (0)