From eaee2959e13cf4b7d2da4f4533732f9ffc81a98c Mon Sep 17 00:00:00 2001 From: Valentin Daviot Date: Thu, 21 May 2026 10:11:40 +0200 Subject: [PATCH] chore: switch to global renovate configuration Inherit the renovate configuration from scality/platform-renovate to centralize dependency-update policy. Local renovate.json now only contains repository-specific overrides (if any). - Removes duplicated rules now inherited from the central config. Co-authored-by: Cursor --- .github/renovate.json | 32 ++------------------------------ 1 file changed, 2 insertions(+), 30 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 84f65b8..fc6c518 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,34 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:recommended", - "abandonments:recommended" - ], - - "packageRules": [ - { - "matchDatasources": ["go"], - "matchManagers": ["gomod"], - "groupName": "golang-dependencies", - "postUpdateOptions": ["gomodTidy"], - "major": { - "automerge": false, - "addLabels": ["major-version-golang-dep", "manual-review"], - "prBody": "Major Golang dependency update detected. **Requires manual review and merge.**", - "prFooter": "" - }, - "minor": { - "automerge": true, - "addLabels": ["minor-version-golang-dep"], - "prBody": "Minor Golang dependency update. Merging automatically if tests pass.", - "prFooter": "" - }, - "patch": { - "automerge": true, - "addLabels": ["patch-version-golang-dep"], - "prBody": "Patch Golang dependency update. Merging automatically if tests pass.", - "prFooter": "" - } - } + "github>scality/platform-renovate" ] -} \ No newline at end of file +}