Skip to content

Commit

Permalink
Make separate group for all Ruby updates
Browse files Browse the repository at this point in the history
With Ruby, a new minor release usually also needs further inspection to check if something has to be adapted in the code.

However, Renovate also fetches its Ruby updates from https://github.com/containerbase/ruby-prebuild, which is sometimes not immediately ready with the new version upon release. To avoid failing pipelines with the "all non-major version" group, extracting the Ruby updates should be the best method.
  • Loading branch information
andyundso committed Dec 27, 2023
1 parent b701b8b commit 639b0d4
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions default.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,19 @@
},
{
"groupName": "all non-patch vite updates",
"matchUpdateTypes": ["major", "minor"],
"matchPackagePatterns": ["^vite"]
"matchUpdateTypes": [
"major",
"minor"
],
"matchPackagePatterns": [
"^vite"
]
},
{
"groupName": "all Ruby updates",
"matchPackagePatterns": [
"^ruby"
]
},
{
"matchManagers": [
Expand Down Expand Up @@ -102,4 +113,4 @@
"schedule": "at any time"
},
"dependencyDashboard": true
}
}

0 comments on commit 639b0d4

Please sign in to comment.