Skip to content
Open
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
182 changes: 130 additions & 52 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,79 @@
'helpers:pinGitHubActionDigestsToSemver',
':separateMultipleMajorReleases',
],
prHourlyLimit: 10,
prHourlyLimit: 15,
prConcurrentLimit: 15,
ignorePaths: [
"!**/tests/**"
],
packageRules: [
{
matchFileNames: [
'**/tests/**',
labels: [
'go',
],
semanticCommitType: 'build',
matchCategories: [
'golang',
],
enabled: true,
},
{
groupName: 'opentelemetry-deps-collector',
labels: [
'go',
'dotnet'
],
matchDepNames: [
'go.opentelemetry.io/*',
'github.com/open-telemetry/*'
semanticCommitType: 'build',
matchCategories: [
'dotnet'
],
},
{
labels: [
'java',
],
semanticCommitType: 'build',
matchCategories: [
'java',
],
},
{
labels: [
'javascript',
],
semanticCommitType: 'build',
matchCategories: [
'js',
],
},
{
labels: [
'python',
],
semanticCommitType: 'build',
matchCategories: [
'python',
],
},
{
labels: [
'ruby',
],
semanticCommitType: 'build',
matchCategories: [
'ruby',
],
},
{
labels: [
'github_actions',
],
semanticCommitType: 'build',
matchManagers: [
'github-actions',
],
},
{
groupName: 'collector-other',
updateTypes: [
'!major'
],
matchCategories: [
'golang',
Expand All @@ -30,9 +87,13 @@
],
},
{
groupName: 'collector-other',
labels: [
'go',
groupName: 'opentelemetry-deps-collector',
updateTypes: [
'!major'
],
matchPackageNames: [
'go.opentelemetry.io{/,}**',
'github.com/open-telemetry{/,}**'
],
matchCategories: [
'golang',
Expand All @@ -42,12 +103,24 @@
],
},
{
groupName: 'opentelemetry-deps-dotnet',
labels: [
groupName: 'dotnet-other',
updateTypes: [
'!major'
],
matchCategories: [
'dotnet'
],
schedule: [
'before 8am on Monday'
],
},
{
groupName: 'opentelemetry-deps-dotnet',
updateTypes: [
'!major'
],
matchDepNames: [
'OpenTelemetry.*'
'OpenTelemetry.**'
],
matchCategories: [
'dotnet'
Expand All @@ -57,24 +130,24 @@
],
},
{
groupName: 'dotnet-other',
labels: [
'dotnet'
groupName: 'java-other',
updateTypes: [
'!major'
],
matchCategories: [
'dotnet'
'java',
],
schedule: [
'before 8am on Monday'
'before 8am on Monday',
],
},
{
groupName: 'opentelemetry-deps-java',
labels: [
'java',
updateTypes: [
'!major'
],
matchDepNames: [
'io.opentelemetry.*',
'io.opentelemetry.**',
],
matchCategories: [
'java',
Expand All @@ -84,24 +157,24 @@
],
},
{
groupName: 'java-other',
labels: [
'java',
groupName: 'nodejs-other',
updateTypes: [
'!major'
],
matchCategories: [
'java',
'js',
],
schedule: [
'before 8am on Monday',
],
},
{
groupName: 'opentelemetry-deps-nodejs',
labels: [
'javascript',
updateTypes: [
'!major'
],
matchDepNames: [
'@opentelemetry/*',
'@opentelemetry/**',
],
matchCategories: [
'js',
Expand All @@ -111,24 +184,24 @@
],
},
{
groupName: 'nodejs-other',
labels: [
'javascript',
groupName: 'python-other',
updateTypes: [
'!major'
],
matchCategories: [
'js',
'python',
],
schedule: [
'before 8am on Monday',
],
},
{
groupName: 'opentelemetry-deps-python',
labels: [
'python',
updateTypes: [
'!major'
],
matchDepNames: [
'opentelemetry-*',
'opentelemetry-**',
],
matchCategories: [
'python',
Expand All @@ -138,24 +211,24 @@
],
},
{
groupName: 'python-other',
labels: [
'python',
groupName: 'ruby-other',
updateTypes: [
'!major'
],
matchCategories: [
'python',
'ruby',
],
schedule: [
'before 8am on Monday',
],
},
{
groupName: 'opentelemetry-deps-ruby',
labels: [
'ruby',
updateTypes: [
'!major'
],
matchDepNames: [
'opentelemetry-*',
'opentelemetry-**',
],
matchCategories: [
'ruby',
Expand All @@ -165,21 +238,20 @@
],
},
{
groupName: 'ruby-other',
labels: [
'ruby',
groupName: 'actions',
updateTypes: [
'!major'
],
matchCategories: [
'ruby',
matchManagers: [
'github-actions',
],
schedule: [
'before 8am on Monday',
],
},
{
groupName: 'actions',
labels: [
'github_actions',
updateTypes: [
'major'
],
matchManagers: [
'github-actions',
Expand All @@ -200,6 +272,12 @@
'before 8am on Monday',
],
},
{
updateTypes: [
'major'
],
"dependencyDashboardApproval": true,
},
],
lockFileMaintenance: {
enabled: true,
Expand Down
Loading