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
50 changes: 28 additions & 22 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,34 +1,40 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
"helpers:pinGitHubActionDigestsToSemver"
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
extends: [
'config:best-practices',
'helpers:pinGitHubActionDigestsToSemver',
],
"packageRules": [
packageRules: [
{
// this is to reduce the number of renovate PRs by consolidating them into a weekly batch
"matchManagers": ["github-actions"],
"extends": ["schedule:weekly"],
"groupName": "github actions"
matchManagers: [
'github-actions',
],
extends: [
'schedule:weekly',
],
groupName: 'github actions',
},
{
// pin opentelemetry-api dependency to: avoid churn, for conservative api version requirement,
// and because opentelemetry-api is a compileOnly dependency
"matchPackageNames": ["io.opentelemetry:opentelemetry-api"],
"matchCurrentVersion": "1.33.0",
"enabled": false
}
matchPackageNames: [
'io.opentelemetry:opentelemetry-api',
],
matchCurrentVersion: '1.33.0',
enabled: false,
},
],
"customManagers": [
customManagers: [
{
"customType": "regex",
"datasourceTemplate": "docker",
"fileMatch": [
"^build.gradle.kts$"
customType: 'regex',
datasourceTemplate: 'docker',
managerFilePatterns: [
'/^build.gradle.kts$/',
],
"matchStrings": [
"\"(?<depName>otel/weaver):(?<currentValue>[^\"]+)\""
]
}
]
matchStrings: [
'"(?<depName>otel/weaver):(?<currentValue>[^"]+)"',
],
},
],
}
Loading