Skip to content

Commit a7de0cc

Browse files
committed
edit printout
1 parent 931f924 commit a7de0cc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

releasing/check-release-helper.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ declare rc=0
77

88
git log $(git describe --tags --abbrev=0)..HEAD --oneline | tee /tmp/release-changelogs.txt
99

10-
if [[ $(cat /tmp/release-changelogs.txt | grep fix) || $(cat /tmp/release-changelogs.txt | grep patch) ]]; then
10+
if [[ $(cat /tmp/release-changelogs.txt | grep fix) || $(cat /tmp/release-changelogs.txt | grep patch) || $(cat /tmp/release-changelogs.txt | grep chore) ]]; then
1111
PATCH=true
1212
fi
1313

@@ -32,9 +32,9 @@ echo -e "\n"
3232
echo -e "================================================================================="
3333

3434
if [[ $MAJOR == false && $MINOR == false ]]; then
35-
echo "Release type: patch"
35+
echo "Recommended release type: patch"
3636
elif [[ $MAJOR == false && $MINOR == true ]]; then
37-
echo "Release type: minor"
37+
echo "Recommended release type: minor"
3838
else
39-
echo "Release type: major"
39+
echo "Recommended release type: major"
4040
fi

0 commit comments

Comments
 (0)