Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 20 additions & 12 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down Expand Up @@ -176,7 +184,7 @@
customType: 'regex',
datasourceTemplate: 'npm',
managerFilePatterns: [
'.github/workflows/**'
'.github/workflows/**',
],
matchStrings: [
'npx (?<depName>[^@]+)@(?<currentValue>[^\\s]+)',
Expand All @@ -186,7 +194,7 @@
customType: 'regex',
datasourceTemplate: 'java-version',
managerFilePatterns: [
'.github/workflows/**'
'.github/workflows/**',
],
matchStrings: [
'(?<currentValue>\\d+) # renovate: datasource=java-version',
Expand Down
Loading