From 5722892dcb31205151802d22a23eaf40e770ea55 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 13:55:50 +0100 Subject: [PATCH] chore: Configure Renovate (#45) * Add renovate.json Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * renovate: Disable all but security updates --------- Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Paul Lange --- .github/renovate.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000000..f19d8969ae --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,18 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "local>celo-org/.github:renovate-config" + ], + "packageRules": [ + { + "enabled": false, + "groupName": "everything", + "matchManagers": ["gomod", "dockerfile", "docker-compose", "npm", "html", "github-actions", "pip_requirements"], + "matchPackagePatterns": ["*"], + "separateMajorMinor": false + } + ], + "vulnerabilityAlerts": { + "enabled": true + } +}