Skip to content

Commit

Permalink
Fix(Conventional Changelog Config): Commit author
Browse files Browse the repository at this point in the history
  • Loading branch information
1aron committed Jan 27, 2024
1 parent 0735bf5 commit b6da9b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/conventional-changelog-config/src/writer-opts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ module.exports = {
})
const author = JSON.parse(response).author
if (author) {
commit.subject += ` [@${author.login}](${context.html_url})`
commit.subject += ` [@${author.login}](${author.html_url})`
}
} catch (error) {
console.log(new Error(`Can't get author by commit hash ${commit.hash}`, { cause: error }))
Expand Down

0 comments on commit b6da9b7

Please sign in to comment.