From e453bee9df0b12616a5972b56c98e4e7be6587cf Mon Sep 17 00:00:00 2001 From: "privilegedescalation-engineer[bot]" <269729446+privilegedescalation-engineer[bot]@users.noreply.github.com> Date: Fri, 20 Mar 2026 22:33:32 +0000 Subject: [PATCH] fix: reduce Renovate prConcurrentLimit to 5 PR .github#32 proposed adding a new renovate.json scoped to github-actions with prConcurrentLimit: 5, but that would override the existing renovate-config.json and silently drop npm dependency updates. Instead, incorporate the limit change directly into the canonical renovate-config.json which already covers both npm and github-actions. Co-authored-by: Gandalf the Greybeard Co-authored-by: Paperclip --- renovate-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate-config.json b/renovate-config.json index 9ca1ba1..19bf94c 100644 --- a/renovate-config.json +++ b/renovate-config.json @@ -3,7 +3,7 @@ "extends": ["config:recommended"], "baseBranches": ["main"], "schedule": ["every weekend"], - "prConcurrentLimit": 10, + "prConcurrentLimit": 5, "packageRules": [ { "matchManagers": ["npm"],