From 9f81a94378bbe53eb996c5b99bce58e5c4c1502e Mon Sep 17 00:00:00 2001 From: Tibor Blenessy Date: Wed, 20 Nov 2024 18:00:07 +0100 Subject: [PATCH] JS-416 Add renovate config --- .github/renovate.json | 62 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 00000000000..86d58d9812f --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,62 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "github>SonarSource/renovate-config:languages-team" + ], + "schedule": [ + "before 4am on Monday" + ], + "enabledManagers": [ + "github-actions", + "maven", + "npm" + ], + "gradle": { + "enabled": true + }, + "bicep": { + "enabled": true + }, + "dockerfile": { + "enabled": true + }, + "ignorePaths": [ + "its/sources/**", + "its/plugin/projects/**", + "**/test/**", + "**/fixtures/**" + ], + "packageRules": [ + { + "managers": [ + "github-actions" + ], + "pinDigests": false, + "groupName": "all github actions", + "groupSlug": "all-github-actions" + }, + { + "managers": [ + "github-actions" + ], + "matchUpdateTypes": ["pin", "rollback"], + "enabled": false + }, + { + "managers": [ + "maven", + "npm" + ], + "matchPackagePatterns": [ + "*" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ], + "groupName": "all non-major dependencies", + "groupSlug": "all-minor-patch" + } + ], + "reviewers": ["team:analysis-js-squad"] +}