From 2f976181edafb27aff131cae07b0e2ab6b3d011d Mon Sep 17 00:00:00 2001 From: Lauri Tulmin Date: Mon, 11 Mar 2024 23:13:49 +0200 Subject: [PATCH] Prevent renovate updating alpha artifacts to snapshot version (#10807) --- .github/renovate.json5 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index d392488918..abb45f0305 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -21,7 +21,8 @@ // major.minor.patch, under the assumption that you would want to update to the stable version // of that release instead of the unstable version for a future release // (TODO remove once the artifacts above release stable versions) - "ignoreUnstable": false + "ignoreUnstable": false, + "allowedVersions": "!/\\-SNAPSHOT$/" }, { "matchPackagePrefixes": ["ch.qos.logback:"],