fix: Remove unnecessary print

This commit is contained in:
demenik
2025-12-05 01:19:05 +01:00
parent 23233cace7
commit dee6f55148

View File

@@ -54,9 +54,6 @@ chores=""
merges=""
others=""
echo "Generating changelog for '$TARGET_BRANCH' (comparing against '$BASE_BRANCH')..."
echo "-------------------------------------------------------------------------------"
while IFS="|" read -r hash subject; do
link=$(get_commit_link "$hash")
@@ -69,7 +66,7 @@ while IFS="|" read -r hash subject; do
case "$type" in
feat) feats="${feats}\n${line}" ;;
fix) fixes="${fixes}\n${line}" ;;
refactor) refactors="${refactors}\n- ${line}" ;;
refactor) refactors="${refactors}\n${line}" ;;
perf) perfs="${perfs}\n${line}" ;;
style) styles="${styles}\n${line}" ;;
test) tests="${tests}\n${line}" ;;