summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCrafterPika <48294025+CrafterPika@users.noreply.github.com>2022-09-02 13:57:49 +0200
committerGitHub <noreply@github.com>2022-09-02 13:57:49 +0200
commitf8ea8e43fec54805aaa8c37453cad7758288079b (patch)
tree565361f5a8af74d5a3434d692cf1a394e34f6d4a
parent702fdd8f2bc5bb5cbae036a573c347b00d3452db (diff)
downloadBedrockConnect-f8ea8e43fec54805aaa8c37453cad7758288079b.tar.gz
BedrockConnect-f8ea8e43fec54805aaa8c37453cad7758288079b.tar.bz2
BedrockConnect-f8ea8e43fec54805aaa8c37453cad7758288079b.zip
fix regex pattern (again(again)) (#335)
-rw-r--r--.github/workflows/release.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index a7e9d37..67c0557 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -15,7 +15,7 @@ jobs:
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
run: |
- if [[ "${{ github.event.head_commit.message }}" =~ ((S|s)upport.*|(R|r)elease.*|(B|b)ump version.*).* ]]; then
+ if [[ "${{ github.event.head_commit.message }}" =~ ^((?!supportedVersion)(S|s)upport.*)|((R|r)elease.*|(B|b)ump version.*).* ]]; then
echo ::set-env name=NEW_RELEASE::true
else
echo ::set-env name=NEW_RELEASE::false