- 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
Generated Vendored
+1 -1
View File
@@ -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));
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long