Files
Athou_commafeed/renovate.json
2025-10-02 06:17:52 +02:00

41 lines
1.2 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
"customManagers:mavenPropertyVersions",
"customManagers:biomeVersions",
":automergePatch",
":automergeDigest",
":automergeBranch",
":automergeRequireAllStatusChecks",
":maintainLockFilesWeekly"
],
"packageRules": [
{
"description": "ignore our client because it's not published on maven central",
"matchManagers": "maven",
"enabled": false,
"matchPackageNames": [
"/commafeed-client/"
]
},
{
"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-jdk-(?<major>\\d+)?(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?([\\._+](?<build>(\\d\\.?)+))?(-(?<compatibility>.*))?$",
"allowedVersions": "/^open-jdk-(?:8|11|17|21|25)(?:\\.|-|$)/"
}
]
}