From b09ea2c9a45565c1791e80371b34c7ad3f87983d Mon Sep 17 00:00:00 2001 From: Alan Agius <17563226+alan-agius4@users.noreply.github.com> Date: Fri, 16 May 2025 10:02:12 +0000 Subject: [PATCH 1/2] refactor: Attempt increasing concurrentRequestLimit to 4 for github.com. Not certain if will cause rate limit failure, but it's worth testing --- .github/ng-renovate/runner-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ng-renovate/runner-config.js b/.github/ng-renovate/runner-config.js index 6d27c9177..31c84e7c4 100644 --- a/.github/ng-renovate/runner-config.js +++ b/.github/ng-renovate/runner-config.js @@ -12,7 +12,7 @@ module.exports = { hostRules: [ { matchHost: 'api.github.com', - concurrentRequestLimit: 1, + concurrentRequestLimit: 4, }, ], productLinks: { From b44bfa34b09eb8ac69ea115738e9bef4b33519c1 Mon Sep 17 00:00:00 2001 From: Alan Agius <17563226+alan-agius4@users.noreply.github.com> Date: Fri, 16 May 2025 10:52:44 +0000 Subject: [PATCH 2/2] refactor: reduce `branchConcurrentLimit` to `2` Prior to this change 8 branches where being processed concurrently. This can cause renovate to run slow on big repositories where there are a lot of branches. --- renovate-presets/default.json5 | 1 + 1 file changed, 1 insertion(+) diff --git a/renovate-presets/default.json5 b/renovate-presets/default.json5 index 67b7960ff..9d1827958 100644 --- a/renovate-presets/default.json5 +++ b/renovate-presets/default.json5 @@ -8,6 +8,7 @@ // Schedule Renovate to run during off-peak hours schedule: ['after 10:00pm every weekday', 'before 5:00am every weekday', 'every weekend'], prConcurrentLimit: 8, + branchConcurrentLimit: 2, prHourlyLimit: 4, timezone: 'America/Tijuana',