Files
Athou_commafeed/renovate.json

39 lines
1.2 KiB
JSON
Raw Normal View History

2024-06-12 13:23:16 +00:00
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
2024-07-02 09:11:07 +02:00
"customManagers:mavenPropertyVersions",
"customManagers:biomeVersions",
2025-01-22 07:52:06 +01:00
"helpers:pinGitHubActionDigests",
":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"
2024-07-23 17:27:43 +02:00
},
{
"description": "IBM Semeru Runtimes uses a custom versioning scheme",
2024-07-23 17:27:43 +02:00
"matchDatasources": "docker",
"matchPackageNames": "ibm-semeru-runtimes",
"versioning": "regex:^open-(?<major>\\d+)?(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?([\\._+](?<build>(\\d\\.?)+))?(-(?<compatibility>.*))?$",
2025-01-23 21:49:28 +01:00
"allowedVersions": "/^open-(?:8|11|17|21|25)(?:\\.|-|$)/"
}
2024-06-12 13:23:16 +00:00
]
}