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