Skip to content

Commit 52ef8d1

Browse files
committed
fix regex
1 parent de1d41a commit 52ef8d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/remove-deprecated-shapes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Check branch name
1515
run: |
1616
# Only continue on branches starting with vX.X (e.g. v1.2, v1.2.3, v1.2-main)
17-
if [[ ! "$GITHUB_HEAD_REF" =~ ^v\.[0-9]+\.[0-9]+.*$ ]]; then
17+
if [[ ! "$GITHUB_HEAD_REF" =~ ^v[0-9]+\.[0-9]+.*$ ]]; then
1818
exit 0
1919
fi
2020

0 commit comments

Comments
 (0)