@@ -153,7 +153,6 @@ jobs:
153
153
LABEL_FEAT_BREAKING="feat!:"
154
154
LABEL_DEPS="chore(deps):"
155
155
LABEL_DEPS_DEV="chore(deps-dev):"
156
- REPO_URL="https://github.com/${{ github.repository }}"
157
156
# Get the last release tag
158
157
LAST_RELEASE_TAG=$(git describe --abbrev=0 --tags)
159
158
echo "Last Release Tag: $LAST_RELEASE_TAG"
@@ -172,7 +171,7 @@ jobs:
172
171
local section_label="$2"
173
172
local section_icon="$3"
174
173
# Get the commit messages with the specified label between the last release and the current release
175
- local commit_messages=$(git log --pretty=format:"- %s ([%H]($REPO_URL/commit/%H) )" "$LAST_RELEASE_TAG..HEAD" --grep="$section_label" --no-merges --decorate --decorate-refs=refs/issues)
174
+ local commit_messages=$(git log --pretty=format:"- %s (Linked Issues: %C(yellow)%H%Creset )" "$LAST_RELEASE_TAG..HEAD" --grep="$section_label" --no-merges --decorate --decorate-refs=refs/issues)
176
175
# If there are commit messages, append the section to the changelog file
177
176
if [ -n "$commit_messages" ]; then
178
177
# Remove duplicate commit messages
@@ -203,7 +202,7 @@ jobs:
203
202
# Function to append non-labeled commits to the changelog file
204
203
append_non_labeled_commits() {
205
204
# Get the commit messages that do not match any conventional commit labels between the last release and the current release
206
- local non_labeled_commit_messages=$(git log --pretty=format:"- %s ([%H]($REPO_URL/commit/%H) )" "$LAST_RELEASE_TAG..HEAD" --invert-grep --grep="^fix:\|^feat:\|^enhancement:\|^docs:\|^refactor:\|^chore:\|^build:\|^ci:\|^perf:\|^style:\|^test:\|^BREAKING CHANGE:\|^feat!:\|^chore(deps):\|^chore(deps-dev):")
205
+ local non_labeled_commit_messages=$(git log --pretty=format:"- %s (Linked Issues: %C(yellow)%H%Creset )" "$LAST_RELEASE_TAG..HEAD" --invert-grep --grep="^fix:\|^feat:\|^enhancement:\|^docs:\|^refactor:\|^chore:\|^build:\|^ci:\|^perf:\|^style:\|^test:\|^BREAKING CHANGE:\|^feat!:\|^chore(deps):\|^chore(deps-dev):")
207
206
# If there are non-labeled commit messages, append the section to the changelog file
208
207
if [ -n "$non_labeled_commit_messages" ]; then
209
208
# Remove duplicate commit messages
@@ -277,4 +276,4 @@ jobs:
277
276
git push origin HEAD:main
278
277
env :
279
278
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
280
- STARTUP_TYPE : ' nats'
279
+ STARTUP_TYPE : ' nats'
0 commit comments