Skip to content

Commit 5d165d0

Browse files
committed
fix
1 parent d05b6f8 commit 5d165d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/minor-version-bump.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
steps:
1010
- name: Check branch name
1111
run: |
12-
# Only runs on branches starting with vX.X (e.g. v1.2, v1.2.3, v1.2-main)
13-
if [[ ! "${GITHUB_HEAD_REF}" =~ ^v\.[0-9]+\.[0-9]+.*$ ]]; then
14-
exit 1
12+
# Only continue on branches starting with vX.X (e.g. v1.2, v1.2.3, v1.2-main)
13+
if [[ ! "$GITHUB_HEAD_REF" =~ ^v\.[0-9]+\.[0-9]+.*$ ]]; then
14+
exit 0
1515
fi
1616
1717
- name: Minor version bump check

0 commit comments

Comments
 (0)