Skip to content

Commit 92d537d

Browse files
refactor: simplify bump regex
Co-authored-by: kelvin-chappell <1722550+kelvin-chappell@users.noreply.github.com>
1 parent 583c840 commit 92d537d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
MAJOR=$((MAJOR + 1))
4949
MINOR=0
5050
PATCH=0
51-
elif echo "$COMMITS" | grep -qiE "^(feat|feature)|^Bump:"; then
51+
elif echo "$COMMITS" | grep -qiE "^(feat|feature|bump):"; then
5252
MINOR=$((MINOR + 1))
5353
PATCH=0
5454
else

0 commit comments

Comments
 (0)