Skip to content

Commit

Permalink
Update scripts/releaseChangelog.mjs
Browse files Browse the repository at this point in the history
Signed-off-by: Olivier Tassinari <[email protected]>
  • Loading branch information
oliviertassinari authored Oct 15, 2024
1 parent b2763e7 commit 0e80eb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/releaseChangelog.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ async function main(argv) {
const changes = commitsItems.map((commitsItem) => {
let shortMessage = commitsItem.commit.message.split('\n')[0];

// If the commit message doesn't have an associated PR, add the commit reference.
// If the commit message doesn't have an associated PR, add the commit sha for reference.
if (!prLinkRegEx.test(shortMessage)) {
shortMessage += ` (${commitsItem.sha.substring(0, 7)})`;
}
Expand Down

0 comments on commit 0e80eb2

Please sign in to comment.