From 43139419dcaeb99e24c487d646766d014d0957a2 Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Tue, 9 Sep 2025 08:20:49 -0500 Subject: [PATCH] fix: correct Renovate allowedPostUpgradeCommands configuration - Changed from deprecated 'allowedCommands' to 'allowedPostUpgradeCommands' - Explicitly allow 'npm run all' command for postUpgradeTasks --- .github/renovate.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 4e99eb9..2b7c693 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -21,7 +21,7 @@ } } ], - "allowedCommands": [ - ".*" + "allowedPostUpgradeCommands": [ + "^npm run all$" ] }