chore(config): migrate renovate config (#2131)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Trask Stalnaker <trask.stalnaker@gmail.com>
This commit is contained in:
renovate[bot] 2025-08-18 10:31:49 -07:00 committed by GitHub
parent ddcc70821a
commit 0f23b508cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 20 additions and 12 deletions

View File

@ -10,26 +10,34 @@
], ],
prHourlyLimit: 5, // we have a large number of parallel runners prHourlyLimit: 5, // we have a large number of parallel runners
labels: [ labels: [
'dependencies' 'dependencies',
], ],
packageRules: [ packageRules: [
{ {
// reduces the number of Renovate PRs // reduces the number of Renovate PRs
// (patch updates are typically non-breaking) // (patch updates are typically non-breaking)
"groupName": "all patch versions", groupName: 'all patch versions',
"matchUpdateTypes": ["patch"], matchUpdateTypes: [
"schedule": ["before 8am every weekday"] 'patch',
],
schedule: [
'before 8am every weekday',
],
}, },
{ {
// avoids these Renovate PRs from trickling in throughout the week // avoids these Renovate PRs from trickling in throughout the week
// (consolidating the review process) // (consolidating the review process)
"matchUpdateTypes": ["minor", "major"], matchUpdateTypes: [
"excludePackageNames": [ 'minor',
// want OpenTelemetry package updates right away 'major',
'io.opentelemetry:**', ],
'io.opentelemetry.*:**', schedule: [
'before 8am on Monday',
],
matchPackageNames: [
'!io.opentelemetry:**',
'!io.opentelemetry.*:**',
], ],
"schedule": ["before 8am on Monday"]
}, },
{ {
matchPackageNames: [ matchPackageNames: [
@ -176,7 +184,7 @@
customType: 'regex', customType: 'regex',
datasourceTemplate: 'npm', datasourceTemplate: 'npm',
managerFilePatterns: [ managerFilePatterns: [
'.github/workflows/**' '.github/workflows/**',
], ],
matchStrings: [ matchStrings: [
'npx (?<depName>[^@]+)@(?<currentValue>[^\\s]+)', 'npx (?<depName>[^@]+)@(?<currentValue>[^\\s]+)',
@ -186,7 +194,7 @@
customType: 'regex', customType: 'regex',
datasourceTemplate: 'java-version', datasourceTemplate: 'java-version',
managerFilePatterns: [ managerFilePatterns: [
'.github/workflows/**' '.github/workflows/**',
], ],
matchStrings: [ matchStrings: [
'(?<currentValue>\\d+) # renovate: datasource=java-version', '(?<currentValue>\\d+) # renovate: datasource=java-version',