- make contributor list to include the @
This commit is contained in:
+1
-1
@@ -2789,7 +2789,7 @@ function buildChangelog(diffInfo, origPrs, options) {
|
||||
// collect all contributors
|
||||
let contributors = [];
|
||||
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));
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user