From b4faa2e0ae2606c88cb86cd9d3487e2ed4774cb3 Mon Sep 17 00:00:00 2001 From: Etienne G Date: Tue, 15 Aug 2023 00:07:38 +1000 Subject: [PATCH] Enable fork processing for renovate --- .github/renovate.json | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 4366609..c2d359a 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,20 +1,21 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "rebaseWhen": "behind-base-branch", - "dependencyDashboard": true, - "labels": ["dependencies", "no-stale"], - "commitMessagePrefix": "⬆️", - "commitMessageTopic": "{{depName}}", - "packageRules": [ - { - "matchManagers": ["github-actions"], - "addLabels": ["github_actions"], - "rangeStrategy": "pin" - }, - { - "matchManagers": ["github-actions"], - "matchUpdateTypes": ["minor", "patch"], - "automerge": true - } - ] -} + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "rebaseWhen": "behind-base-branch", + "dependencyDashboard": true, + "labels": ["dependencies", "no-stale"], + "commitMessagePrefix": "⬆️", + "commitMessageTopic": "{{depName}}", + "forkProcessing": "enabled", + "packageRules": [ + { + "matchManagers": ["github-actions"], + "addLabels": ["github_actions"], + "rangeStrategy": "pin" + }, + { + "matchManagers": ["github-actions"], + "matchUpdateTypes": ["minor", "patch"], + "automerge": true + } + ] + }