-
-
Notifications
You must be signed in to change notification settings - Fork 377
/
renovate.json
37 lines (37 loc) · 1.18 KB
/
renovate.json
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
34
35
36
37
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"customManagers:mavenPropertyVersions",
"customManagers:biomeVersions",
":automergePatch",
":automergeBranch",
":automergeRequireAllStatusChecks",
":maintainLockFilesWeekly"
],
"packageRules": [
{
"description": "ignore our client because it's not published on maven central",
"matchManagers": "maven",
"matchPackagePatterns": "commafeed-client",
"enabled": false
},
{
"description": "io.quarkus.platform artifacts are released a week after io.quarkus artifacts",
"matchManagers": "maven",
"matchPackageNames": "io.quarkus:**",
"enabled": false
},
{
"matchManagers": "npm",
"rangeStrategy": "bump"
},
{
"description": "IBM Semeru Runtimes uses a custom versioning scheme",
"matchDatasources": "docker",
"matchPackageNames": "ibm-semeru-runtimes",
"versioning": "regex:^open-(?<major>\\d+)?(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?([\\._+](?<build>(\\d\\.?)+))?(-(?<compatibility>.*))?$",
"allowedVersions": "/^open-(?:8|11|17|21)(?:\\.|-|$)/"
}
]
}