From 1314c08902ad604ec66a396e1e8cf9b3038bb5d7 Mon Sep 17 00:00:00 2001 From: Ross Lovas Date: Fri, 7 Jul 2023 08:02:59 +0930 Subject: [PATCH] Fix NonPreReleaseTagsRegex by making it an exact match, not partial (#66) --- octoversion.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octoversion.json b/octoversion.json index cbdb66c..aaec3f8 100644 --- a/octoversion.json +++ b/octoversion.json @@ -1,3 +1,3 @@ { - "NonPreReleaseTagsRegex": "refs/heads/(main|master|release/.*)" + "NonPreReleaseTagsRegex": "^refs/heads/(main|master|release/.*)$" }