From 5c48b65118cefc3e69b2dd1f8e2968d4dbf4da19 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 | 44 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 00000000000..f5b67dd091b --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "github>SonarSource/renovate-config:languages-team" + ], + "schedule": [ + "before 4am on Monday" + ], + "enabledManagers": [ + "github-actions", + "npm" + ], + "gradle": { + "enabled": true + }, + "bicep": { + "enabled": true + }, + "dockerfile": { + "enabled": true + }, + "ignorePaths": [ + "private/its/**", + "**/test/**" + ], + "packageRules": [ + { + "managers": [ + "github-actions" + ], + "pinDigests": false, + "groupName": "all github actions", + "groupSlug": "all-github-actions" + }, + { + "managers": [ + "github-actions" + ], + "matchUpdateTypes": ["pin", "rollback"], + "enabled": false + } + ], + "reviewers": ["team:analysis-js-squad"] +}