forked from OpenVoxProject/jruby-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.jsonc
More file actions
33 lines (31 loc) · 881 Bytes
/
Copy pathrenovate.jsonc
File metadata and controls
33 lines (31 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"baseBranchPatterns": ["main", "5.x"],
"addLabels": ["renovate", "dependencies"],
"assigneesFromCodeOwners": true,
"automerge": true,
"automergeStrategy": "merge-commit",
"automergeType": "pr",
"dependencyDashboard": true,
"enabledManagers": ["leiningen"],
"platformAutomerge": true,
"packageRules": [
// Lock JRuby to the 10.0 release series for the main branch.
{
"groupName": "jruby updates",
"allowedVersions": "<10.1",
"matchPackageNames": [
"org.openvoxproject:jruby-deps"
]
},
// Lock JRuby to the 9.4 release series for the 5.x branch.
{
"groupName": "jruby updates",
"allowedVersions": "<10.0",
"matchBaseBranches": "5.x",
"matchPackageNames": [
"org.openvoxproject:jruby-deps"
]
}
]
}