diff --git a/packages/conventional-changelog-config/src/writer-opts.ts b/packages/conventional-changelog-config/src/writer-opts.ts index 319286f..6e83c10 100644 --- a/packages/conventional-changelog-config/src/writer-opts.ts +++ b/packages/conventional-changelog-config/src/writer-opts.ts @@ -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 }))