Skip to content

Commit

Permalink
increase number of renovate PRs
Browse files Browse the repository at this point in the history
Since k8gb-io#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: k8gb-io#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 (k8gb-io#1052) so I proposal to turn on automerge (if the pipeline is green ofc). This should save the maintainers some precious minutes.
  • Loading branch information
abaguas committed Jun 26, 2024
1 parent 149d921 commit ba0c75e
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 ba0c75e

Please sign in to comment.