Skip to content

Commit

Permalink
Remove GH username notification (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippeauriach authored Dec 6, 2022
1 parent 0ff1b89 commit 767eeda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/actions/changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ exports.generateChangelog = async function generateChangelog({
.map((pr) => {
return `- [${pr.title.replace(/"/g, "")}](https://github.com/${
repository.owner.login
}/${repository.name}/pull/${pr.number}) #${pr.number} by @${
}/${repository.name}/pull/${pr.number}) #${pr.number} by [${
pr.user.login
}`;
}](https://github.com/${pr.user.login})`;
})
.join("\n")
);
Expand Down

0 comments on commit 767eeda

Please sign in to comment.