Skip to content

Commit

Permalink
feat(release.config.js): use full commit hash in commit link
Browse files Browse the repository at this point in the history
* conventional-changelog/conventional-changelog#523
  - Get latest changes introduced by this PR
  - Fixes commit short hashes no longer showing in both the release notes
    and the changelog
  • Loading branch information
myii committed Oct 31, 2019
1 parent a1a02f4 commit 478ff37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssf/files/default/release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ module.exports = {
}

if (typeof commit.hash === `string`) {
commit.hash = commit.hash.substring(0, 7)
commit.shortHash = commit.hash.substring(0, 7)
}

if (typeof commit.subject === `string`) {
Expand Down

0 comments on commit 478ff37

Please sign in to comment.