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
21 changes: 20 additions & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,25 @@
"customManagers:dockerfileVersions"
],
"packageRules": [

// ── Scheduling & grouping ──────────────────────────────────────────

{
"groupName": "all patch versions",
"matchUpdateTypes": ["patch", "digest"],
"schedule": ["before 8am every weekday"],
"schedule": ["before 8am on Tuesday"],
"matchPackageNames": ["!io.opentelemetry**"]
},
{
// group all GitHub Actions updates into a single weekly PR
// (must be after patch rule so that it wins for GH Action patches)
"matchManagers": ["github-actions"],
"extends": ["schedule:weekly"],
"groupName": "github actions"
},

// ── Version constraints ────────────────────────────────────────────

{
"matchPackageNames": [
"io.opentelemetry:**",
Expand All @@ -26,6 +39,9 @@
"ignoreUnstable": false,
allowedVersions: '!/\\-SNAPSHOT$/',
},

// ── Package family groups ──────────────────────────────────────────

{
groupName: 'opentelemetry instrumentation packages',
matchPackageNames: [
Expand All @@ -34,6 +50,9 @@
'open-telemetry/opentelemetry-java-instrumentation' // for logging-k8s-stdout-otlp-json/Dockerfile
],
},

// ── Disabled updates ───────────────────────────────────────────────

{
// Spring starter doesn't support Spring Boot 4 yet
"matchPackageNames": ["org.springframework.boot:**"],
Expand Down
Loading