diff options
| author | CrafterPika <48294025+CrafterPika@users.noreply.github.com> | 2022-09-02 13:57:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-02 13:57:49 +0200 |
| commit | f8ea8e43fec54805aaa8c37453cad7758288079b (patch) | |
| tree | 565361f5a8af74d5a3434d692cf1a394e34f6d4a | |
| parent | 702fdd8f2bc5bb5cbae036a573c347b00d3452db (diff) | |
| download | BedrockConnect-f8ea8e43fec54805aaa8c37453cad7758288079b.tar.gz BedrockConnect-f8ea8e43fec54805aaa8c37453cad7758288079b.tar.bz2 BedrockConnect-f8ea8e43fec54805aaa8c37453cad7758288079b.zip | |
fix regex pattern (again(again)) (#335)
| -rw-r--r-- | .github/workflows/release.yml | 2 |
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 |
