From 6d226b4282fa389771ec5b1aac23e487428ed740 Mon Sep 17 00:00:00 2001 From: Valentin Daviot Date: Thu, 21 May 2026 09:58:49 +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 | 43 +++++-------------------------------------- 1 file changed, 5 insertions(+), 38 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 3540c1f..fc6c518 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,39 +1,6 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended", - "abandonments:recommended" - ], - - "env": { - "GOPRIVATE": "github.com/scality/*" - }, - - "packageRules": [ - { - "matchDatasources": ["go"], - "matchManagers": ["gomod"], - "groupName": "golang-dependencies", - "postUpdateOptions": ["gomodTidy"], - "major": { - "automerge": false, - "addLabels": ["major-version-golang-dep"], - "prBody": "Major Golang dependency update detected.", - "prFooter": "" - }, - "minor": { - "automerge": false, - "addLabels": ["minor-version-golang-dep"], - "prBody": "Minor Golang dependency update.", - "prFooter": "" - }, - "patch": { - "automerge": false, - "addLabels": ["patch-version-golang-dep"], - "prBody": "Patch Golang dependency update.", - "prFooter": "" - } - } - ] - } - \ No newline at end of file + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "github>scality/platform-renovate" + ] +}