Skip to content

Commit

Permalink
Realized the label check is case sensitive. Changing that.
Browse files Browse the repository at this point in the history
  • Loading branch information
skduncan committed Oct 22, 2024
1 parent e67ddd9 commit 3d21925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/github-actions-release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
exit 1
fi
SEMVER_LABEL=$(echo "$LABELS" | grep -E '^(major|minor|patch)$' || true)
SEMVER_LABEL=$(echo "$LABELS" | grep -iE '^(major|minor|patch)$' || true)
echo "Found Semver labels: $SEMVER_LABEL"
if [ -z "$SEMVER_LABEL" ]; then
Expand Down

0 comments on commit 3d21925

Please sign in to comment.