Try to prevent undesired renovate updates (#9357)

This commit is contained in:
Lauri Tulmin 2023-08-31 18:48:50 +03:00 committed by GitHub
parent 103224c366
commit 4f1becf9c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -29,6 +29,16 @@
"matchPackagePrefixes": ["com.linecorp.armeria:"],
"groupName": "armeria packages"
},
{
// prevent update to 2.4-groovy-4.0-SNAPSHOT
"matchPackageNames": ["org.spockframework:spock-bom"],
"allowedVersions": "!/\\-SNAPSHOT$/"
},
{
// prevent 3.0.1u2 -> 3.0.1
"matchPackageNames": ["com.google.code.findbugs:annotations"],
"allowedVersions": "!/3\\.0\\.1$/"
},
{
// OpenTelemetry SDK updates are handled by auto-update-otel-sdk.yml
"matchPackagePrefixes": ["io.opentelemetry:"],