Skip to content

Commit ffe9f63

Browse files
authored
chore(ci): use startsWith instead of regex match (#2493)
1 parent 12b6606 commit ffe9f63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/merge-release-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
merge-release-tag:
12-
if: ${{ github.ref =~ '^refs/tags/mongosh@[0-9]+\.[0-9]+\.[0-9]+(-rc\.[0-9]+)?$' }}
12+
if: ${{ startsWith(github.ref, 'refs/tags/mongosh@') }}
1313
runs-on: ubuntu-latest
1414

1515
steps:

0 commit comments

Comments
 (0)