Browse Source

Prevent renovate updating alpha artifacts to snapshot version (#10807)

Lauri Tulmin 1 year ago
parent
commit
2f976181ed
1 changed files with 2 additions and 1 deletions
  1. 2 1
      .github/renovate.json5

+ 2 - 1
.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:"],