From 2ab013815097341d665f11a6a5ae197efda8c865 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 15:34:06 +0100 Subject: [PATCH] SONARGO-60 Configure Renovate (#48) Co-authored-by: Peter Trifanov --- .github/renovate.json | 80 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 00000000..6c704c23 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,80 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "github>SonarSource/renovate-config:languages-team" + ], + "schedule": [ + "before 4am on Monday" + ], + "enabledManagers": [ + "gradle", + "gradle-wrapper", + "github-actions", + "gomod", + "git-submodules" + ], + "git-submodules": { + "enabled": true + }, + "packageRules": [ + { + "managers": [ + "github-actions" + ], + "pinDigests": false, + "groupName": "all github actions", + "groupSlug": "all-github-actions" + }, + { + "managers": [ + "github-actions" + ], + "matchUpdateTypes": ["pin", "rollback"], + "enabled": false + }, + { + "managers": [ + "gradle" + ], + "matchPackagePatterns": [ + "*" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ], + "groupName": "all non-major dependencies", + "groupSlug": "all-minor-patch" + }, + { + "managers": [ + "gomod" + ], + "matchPackagePatterns": [ + "*" + ], + "excludePackageNames": [ + "go" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ], + "groupName": "all non-major Go dependencies", + "groupSlug": "all-go-minor-patch" + }, + { + "managers": [ + "git-submodules" + ], + "matchDepNames": [ + "its/sources/traefik", + "its/sources/minio", + "its/sources/prometheus", + "its/sources/kubernetes-client-go" + ], + "enabled": false + } + ], + "reviewers": ["team:analysis-cloud-squad"] +}