From d9fc7974206ce09b875011ab61e42060cc2545d2 Mon Sep 17 00:00:00 2001 From: Anthony TREUILLIER Date: Wed, 29 Oct 2025 16:54:50 +0100 Subject: [PATCH] ci: add renovate configuration Signed-off-by: Anthony TREUILLIER --- .github/renovate.json | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..3540c1f --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,39 @@ +{ + "$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