make renovate ignore all "io.quarkus" versions

This commit is contained in:
Athou
2024-08-28 09:09:12 +02:00
parent ae15f61fc2
commit 3aa1987319

View File

@@ -11,14 +11,15 @@
],
"packageRules": [
{
"description": "ignore our client because it's not published on maven central",
"matchManagers": "maven",
"matchPackagePatterns": "commafeed-client",
"enabled": false
},
{
"description": "quarkus-extension-processor is released way before quarkus-bom, causing build failures because quarkus-bom is not yet released",
"description": "io.quarkus.platform artifacts are released a week after io.quarkus artifacts",
"matchManagers": "maven",
"matchPackagePatterns": "quarkus-extension-processor",
"matchPackageNames": "io.quarkus:**",
"enabled": false
},
{
@@ -26,6 +27,7 @@
"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>.*))?$",