Link each commit in the release changelog to its own commit page
CI / build-and-scan (pull_request) Successful in 56s

COMMIT_LIST only rendered the bare subject line per commit, with no
way to jump to that specific commit — only the triggering commit
(Source:) had a link. Each line now reads
"- [<short-sha>](<repo>/commit/<sha>) <subject>", matching the same
link style already used for Source.
This commit is contained in:
Djeex
2026-08-23 23:20:51 +02:00
parent ae737c0bd0
commit b0a220e7a2
+2 -2
View File
@@ -155,9 +155,9 @@ jobs:
fi
fi
COMMIT_LIST=$(git log --no-merges --format='- %s' "$BASE_REF".."${{ github.sha }}")
REPO_URL="https://git.djeex.fr/Djeex/nvidia-stock-bot"
COMMIT_LIST=$(git log --no-merges --format="- [%h](${REPO_URL}/commit/%H) %s" "$BASE_REF".."${{ github.sha }}")
SHORT_SHA=$(echo "${{ github.sha }}" | cut -c1-7)
SOURCE_LINE="[${SHORT_SHA}](${REPO_URL}/commit/${{ github.sha }})"
if [ -n "$PR_NUM" ]; then