We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6750991 commit 3093de9Copy full SHA for 3093de9
.github/workflows/AUTO-VERSION.yml
@@ -86,7 +86,7 @@ jobs:
86
VERSION_TYPE="${{ github.event.inputs.release_type }}"
87
if [ "$VERSION_TYPE" = "auto" ] || [ -z "$VERSION_TYPE" ]; then
88
# Check for feat branches first (minor version bump - Y)
89
- if echo "$MERGED_BRANCHES" | grep -i "^feat\|/feat"; then
+ if echo "$MERGED_BRANCHES" | grep -iE "^feat|/feat"; then
90
VERSION_TYPE="minor"
91
# Check for feat in commit messages as fallback
92
elif echo "$COMMIT_MESSAGES" | grep -i "^feat\|feat:"; then
0 commit comments