Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions renovate.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"baseBranchPatterns": ["main", "5.x"],
"baseBranchPatterns": ["main", "6\\.x", "5\\.x"],
Comment thread
bastelfreak marked this conversation as resolved.
"addLabels": ["renovate", "dependencies"],
"assigneesFromCodeOwners": true,
"automerge": true,
Expand All @@ -11,10 +11,20 @@
"platformAutomerge": true,

"packageRules": [
// Lock JRuby to the 10.0 release series for the main branch.
// Lock JRuby to the 10.1 release series for the main branch.
{
"groupName": "jruby updates",
"allowedVersions": "<10.2",
"matchBaseBranches": ["main"],
"matchPackageNames": [
"org.openvoxproject:jruby-deps"
]
},
Comment thread
Copilot marked this conversation as resolved.
// Lock JRuby to the 10.0 release series for the 6.x branch.
{
"groupName": "jruby updates",
"allowedVersions": "<10.1",
"matchBaseBranches": ["6.x"],
"matchPackageNames": [
"org.openvoxproject:jruby-deps"
]
Expand All @@ -24,7 +34,7 @@
{
"groupName": "jruby updates",
"allowedVersions": "<10.0",
"matchBaseBranches": "5.x",
"matchBaseBranches": ["5.x"],
"matchPackageNames": [
"org.openvoxproject:jruby-deps"
]
Expand Down