From d66944d856ca675d0eb826b058a93b1d7b07dc95 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 24 Feb 2026 16:45:49 +0100 Subject: [PATCH] chore(config): migrate config renovate.json (#18183) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- renovate.json | 73 +++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 56 insertions(+), 17 deletions(-) diff --git a/renovate.json b/renovate.json index c0490c5610..a2f2c75719 100644 --- a/renovate.json +++ b/renovate.json @@ -4,17 +4,27 @@ "config:recommended" ], "separateMultipleMajor": true, - "baseBranches": ["main"], + "baseBranchPatterns": [ + "main" + ], "postUpdateOptions": [ "gomodTidy", "gomodUpdateImportPaths" ], - "schedule": ["* * 21 * *"], + "schedule": [ + "* * 21 * *" + ], "timezone": "UTC", "github-actions": { - "managerFilePatterns": ["scripts/**"] + "managerFilePatterns": [ + "scripts/**" + ] }, - "prBodyNotes": ["```release-notes","NONE","```"], + "prBodyNotes": [ + "```release-notes", + "NONE", + "```" + ], "prConcurrentLimit": 20, "prHourlyLimit": 5, "packageRules": [ @@ -27,31 +37,49 @@ }, { "description": "Don't update prometheus-io namespace packages", - "matchPackageNames": ["@prometheus-io/**"], + "matchPackageNames": [ + "@prometheus-io/**" + ], "enabled": false }, { "description": "Group AWS Go dependencies", - "matchManagers": ["gomod"], - "matchPackageNames": ["github.com/aws/**"], + "matchManagers": [ + "gomod" + ], + "matchPackageNames": [ + "github.com/aws/**" + ], "groupName": "AWS Go dependencies" }, { "description": "Group Azure Go dependencies", - "matchManagers": ["gomod"], - "matchPackageNames": ["github.com/Azure/**"], + "matchManagers": [ + "gomod" + ], + "matchPackageNames": [ + "github.com/Azure/**" + ], "groupName": "Azure Go dependencies" }, { "description": "Group Kubernetes Go dependencies", - "matchManagers": ["gomod"], - "matchPackageNames": ["k8s.io/**"], + "matchManagers": [ + "gomod" + ], + "matchPackageNames": [ + "k8s.io/**" + ], "groupName": "Kubernetes Go dependencies" }, { "description": "Group OpenTelemetry Go dependencies", - "matchManagers": ["gomod"], - "matchPackageNames": ["go.opentelemetry.io/**"], + "matchManagers": [ + "gomod" + ], + "matchPackageNames": [ + "go.opentelemetry.io/**" + ], "groupName": "OpenTelemetry Go dependencies" }, { @@ -60,7 +88,10 @@ "web/ui/mantine-ui/package.json" ], "groupName": "Mantine UI", - "matchUpdateTypes": ["minor", "patch"], + "matchUpdateTypes": [ + "minor", + "patch" + ], "enabled": true }, { @@ -69,7 +100,10 @@ "web/ui/react-app/package.json" ], "groupName": "React App", - "matchUpdateTypes": ["minor", "patch"], + "matchUpdateTypes": [ + "minor", + "patch" + ], "enabled": true }, { @@ -78,14 +112,19 @@ "web/ui/module/**/package.json" ], "groupName": "Modules", - "matchUpdateTypes": ["minor", "patch"], + "matchUpdateTypes": [ + "minor", + "patch" + ], "enabled": true } ], "branchPrefix": "deps-update/", "vulnerabilityAlerts": { "enabled": true, - "labels": ["security-update"] + "labels": [ + "security-update" + ] }, "osvVulnerabilityAlerts": true, "dependencyDashboardApproval": false