Skip to content

Commit

Permalink
increase number of renovate PRs (#1615)
Browse files Browse the repository at this point in the history
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: #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 <[email protected]>
  • Loading branch information
abaguas authored Jun 27, 2024
1 parent 149d921 commit 85c5c7e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
".github/workflows/scorecard.yml",
],
"labels": ["dependencies", "renovate"],
"prConcurrentLimit": 5,
"prConcurrentLimit": 15,
"packageRules": [
{
"matchPackagePatterns": [
Expand All @@ -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",
Expand Down

0 comments on commit 85c5c7e

Please sign in to comment.