- make contributor list to include the @

This commit is contained in:
Mike Penz
2024-06-20 11:52:50 +02:00
parent 7543ef961c
commit d34fad209b
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -278,7 +278,7 @@ export function buildChangelog(diffInfo: DiffInfo, origPrs: PullRequestInfo[], o
// collect all contributors
let contributors: string[] = []
for (const pr of prs) {
contributors = contributors.concat(pr.author)
contributors = contributors.concat(`@${pr.author}`)
}
const contributorsString = contributors.join(', ')
core.setOutput('contributors', JSON.stringify(contributors))