Skip to content

Commit f3df09f

Browse files
authored
Merge pull request #29 from frmscoe/main
feat: Update dev with Main
2 parents 2e99466 + 70baae3 commit f3df09f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/release.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ jobs:
153153
LABEL_FEAT_BREAKING="feat!:"
154154
LABEL_DEPS="chore(deps):"
155155
LABEL_DEPS_DEV="chore(deps-dev):"
156-
REPO_URL="https://github.com/${{ github.repository }}"
157156
# Get the last release tag
158157
LAST_RELEASE_TAG=$(git describe --abbrev=0 --tags)
159158
echo "Last Release Tag: $LAST_RELEASE_TAG"
@@ -172,7 +171,7 @@ jobs:
172171
local section_label="$2"
173172
local section_icon="$3"
174173
# 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)
176175
# If there are commit messages, append the section to the changelog file
177176
if [ -n "$commit_messages" ]; then
178177
# Remove duplicate commit messages
@@ -203,7 +202,7 @@ jobs:
203202
# Function to append non-labeled commits to the changelog file
204203
append_non_labeled_commits() {
205204
# 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):")
207206
# If there are non-labeled commit messages, append the section to the changelog file
208207
if [ -n "$non_labeled_commit_messages" ]; then
209208
# Remove duplicate commit messages
@@ -277,4 +276,4 @@ jobs:
277276
git push origin HEAD:main
278277
env:
279278
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
280-
STARTUP_TYPE: 'nats'
279+
STARTUP_TYPE: 'nats'

0 commit comments

Comments
 (0)