Skip to content

Commit

Permalink
fix: fixed variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsonbrsilva committed Apr 26, 2024
1 parent 1063607 commit 6f8d5f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-pre-release-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ jobs:
commit_message='${{ steps.get_commit_message.outputs.commit_message }}'
major_change_regex="(^FIRST RELEASE:.*$)|(^BREAKING CHANGE:.*$)|(^[^\s]+!:.*$)"
if [[ "$commit_message" =~ $breaking_change_regex ]]; then
if [[ "$commit_message" =~ $major_change_regex ]]; then
echo "A major change was identified."
echo "is_major_change=true >> $GITHUB_OUTPUT
echo "is_major_change=true" >> $GITHUB_OUTPUT
exit 0
fi
Expand Down

0 comments on commit 6f8d5f0

Please sign in to comment.