From 65d6fba998bf690d59a91de7b89910be4a1ee66c Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Wed, 22 Feb 2023 16:16:02 +0100 Subject: [PATCH] build: never allow renovate PRs to be edited directly More context: https://github.com/renovatebot/renovate/issues/16657 https://github.com/renovatebot/renovate/commit/340a913a48bca375d721cf59bde3fe7a14ed6f1c --- .github/ng-renovate/runner-config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/ng-renovate/runner-config.js b/.github/ng-renovate/runner-config.js index a612ad80b..a2fda9cfd 100644 --- a/.github/ng-renovate/runner-config.js +++ b/.github/ng-renovate/runner-config.js @@ -4,6 +4,9 @@ module.exports = { platform: 'github', branchNameStrict: true, forkMode: true, + // Renovate fork PRs should never be editable as Renovate would otherwise + // not be able to delete the branches and future updates would be missed. + forkModeDisallowMaintainerEdits: true, onboarding: false, persistRepoData: true, allowedPostUpgradeCommands: ['.'],