From 673a182139752b2a93cdf3a4cc423d0702c32618 Mon Sep 17 00:00:00 2001 From: Arve Knudsen Date: Thu, 23 Oct 2025 09:56:44 +0200 Subject: [PATCH] Add Renovate configuration (#16654) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add Renovate configuration --------- Signed-off-by: Arve Knudsen Co-authored-by: Jan-Otto Kröpke --- renovate.json | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000000..175e1d6464 --- /dev/null +++ b/renovate.json @@ -0,0 +1,62 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ], + "separateMultipleMajor": true, + "baseBranches": ["main"], + "postUpdateOptions": [ + "gomodTidy", + "gomodUpdateImportPaths" + ], + "schedule": ["* 0-8 * * 1"], + "timezone": "UTC", + "packageRules": [ + { + "description": "Don't update replace directives", + "matchPackageNames": [ + "github.com/fsnotify/fsnotify" + ], + "enabled": false + }, + { + "description": "Don't update prometheus-io namespace packages", + "matchPackageNames": ["@prometheus-io/**"], + "enabled": false + }, + { + "description": "Group Mantine UI dependencies", + "matchFileNames": [ + "web/ui/mantine-ui/package.json" + ], + "groupName": "Mantine UI", + "matchUpdateTypes": ["minor", "patch"], + "enabled": true + }, + { + "description": "Group React App dependencies", + "matchFileNames": [ + "web/ui/react-app/package.json" + ], + "groupName": "React App", + "matchUpdateTypes": ["minor", "patch"], + "enabled": true + }, + { + "description": "Group module dependencies", + "matchFileNames": [ + "web/ui/module/**/package.json" + ], + "groupName": "Modules", + "matchUpdateTypes": ["minor", "patch"], + "enabled": true + } + ], + "branchPrefix": "deps-update/", + "vulnerabilityAlerts": { + "enabled": true, + "labels": ["security-update"] + }, + "osvVulnerabilityAlerts": true, + "dependencyDashboardApproval": false +}