Skip to content

Commit 3093de9

Browse files
Update .github/workflows/AUTO-VERSION.yml
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 6750991 commit 3093de9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/AUTO-VERSION.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
VERSION_TYPE="${{ github.event.inputs.release_type }}"
8787
if [ "$VERSION_TYPE" = "auto" ] || [ -z "$VERSION_TYPE" ]; then
8888
# Check for feat branches first (minor version bump - Y)
89-
if echo "$MERGED_BRANCHES" | grep -i "^feat\|/feat"; then
89+
if echo "$MERGED_BRANCHES" | grep -iE "^feat|/feat"; then
9090
VERSION_TYPE="minor"
9191
# Check for feat in commit messages as fallback
9292
elif echo "$COMMIT_MESSAGES" | grep -i "^feat\|feat:"; then

0 commit comments

Comments
 (0)