From def9854140f97a4ab872a06650e65009f4b230a0 Mon Sep 17 00:00:00 2001 From: ViMaSter Date: Sun, 12 Oct 2025 03:44:42 +0200 Subject: [PATCH 1/2] feat: Adds default renovate configuration --- renovate.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..38c2ad7 --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ] +} \ No newline at end of file From 3f62a9e5d6c34c2bc1c81b40f39a5373f792f433 Mon Sep 17 00:00:00 2001 From: June Date: Fri, 17 Oct 2025 16:01:08 +0200 Subject: [PATCH 2/2] fix: enable forkProcessing to make Renovate work for this repo Since Renovate is running in autodiscover mode and this repo is a fork, enable forkProcessing to have Renovate work for this repo. https://docs.renovatebot.com/configuration-options/#forkprocessing --- renovate.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index 38c2ad7..d980a0e 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,6 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:recommended" - ] -} \ No newline at end of file + ], + "forkProcessing": "enabled" +}