From 36b50c33306809315ba66e668ac090599d39bc2f Mon Sep 17 00:00:00 2001 From: Simon Schrottner Date: Fri, 27 Dec 2024 13:06:16 +0100 Subject: [PATCH] build(renovate): Utilize default OpenFeature Renovate configuration We do have a default OpenFeature Renovate configuration within our community-tooling repository. (https://github.com/open-feature/community-tooling/blob/main/renovate.json) To reduce maintenance efforts, we should stick to the general one as a basis. Signed-off-by: Simon Schrottner --- renovate.json | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/renovate.json b/renovate.json index f29e38c2..28b2e68b 100644 --- a/renovate.json +++ b/renovate.json @@ -1,30 +1,10 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base" - ], - "semanticCommits": "enabled", + "extends": ["github>open-feature/community-tooling"], "pep621": { "enabled": true }, "pre-commit": { "enabled": true - }, - "packageRules": [ - { - "description": "Automerge non-major updates", - "matchUpdateTypes": [ - "minor", - "patch" - ], - "matchCurrentVersion": "!/^0/", - "automerge": true - }, - { - "matchManagers": [ - "github-actions" - ], - "automerge": true - } - ] + } }