File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -93,15 +93,12 @@ jobs:
9393 # Strip conventional commit prefix and optional scope for the description
9494 desc=$(echo "$msg" | sed -E 's/^(feat|fix|refactor|chore|docs|style|perf|test|ci|build)(\([^)]*\))?[!]?:\s*//')
9595
96+ entry=$(printf '\n* %s (%s)' "$desc" "$link")
9697 case "$msg" in
97- feat*) FEATURES="$FEATURES
98- * $desc ($link)" ;;
99- fix*) FIXES="$FIXES
100- * $desc ($link)" ;;
101- refactor*) REFACTORS="$REFACTORS
102- * $desc ($link)" ;;
103- *) OTHER="$OTHER
104- * $desc ($link)" ;;
98+ feat*) FEATURES="$FEATURES$entry" ;;
99+ fix*) FIXES="$FIXES$entry" ;;
100+ refactor*) REFACTORS="$REFACTORS$entry" ;;
101+ *) OTHER="$OTHER$entry" ;;
105102 esac
106103 done <<< "$(git log "$LAST_TAG"..HEAD --pretty=format:'%H %s' -- "$pkg_path/src" | awk '!seen[$0]++')"
107104 done
You can’t perform that action at this time.
0 commit comments