From 85c5c7e32d09f89e4cb515a5d0dcd8c92598e692 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20=C3=81guas?= Date: Thu, 27 Jun 2024 11:31:49 +0200 Subject: [PATCH] increase number of renovate PRs (#1615) Since #1610 was merged the number of PRs created by renovate increased, as bumps of libraries on version 0.x are handled in a dedicated PR. The maximum number of concurrent PRs is 5 which results in rate-limiting: https://github.com/k8gb-io/k8gb/issues/1048. The proposal is to increase it to 15 so that we can see and tackle the PRs containing potential breaking changes. In addition, the `update all non-major dependencies` group should very rarely contain breaking changes (#1052) so I proposal to turn on automerge (if the pipeline is green ofc). This should save the maintainers some precious minutes. Signed-off-by: abaguas --- renovate.json5 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/renovate.json5 b/renovate.json5 index 493eae42ae..00930f3e27 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -14,7 +14,7 @@ ".github/workflows/scorecard.yml", ], "labels": ["dependencies", "renovate"], - "prConcurrentLimit": 5, + "prConcurrentLimit": 15, "packageRules": [ { "matchPackagePatterns": [ @@ -26,7 +26,8 @@ ], "matchCurrentVersion": "!/^v?0/", "groupName": "all non-major dependencies", - "groupSlug": "all-minor-patch" + "groupSlug": "all-minor-patch", + "automerge": true, }, { "matchPackageNames": [ "k8gb-io/k8gb",