From 3f62a9e5d6c34c2bc1c81b40f39a5373f792f433 Mon Sep 17 00:00:00 2001 From: June Date: Fri, 17 Oct 2025 16:01:08 +0200 Subject: [PATCH] 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" +}