Skip to content

Commit

Permalink
Fixed newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
Belami02 authored Jun 28, 2024
1 parent d120048 commit 1e33ecd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/TriageClosedIssue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,16 @@ jobs:
if (!assigned) {
if (issueData.assignees.length != 0) {
const assignees = issueData.assignees.map(assignee => assignee.login).join(', ');
resultString += `Actual Assignees: ${assignees}`;
resultString += `Actual Assignees: ${assignees}\n`;
} else {
resultString += "Actual Assignees: No one :(";
resultString += "Actual Assignees: No one :(\n";
}
}
if (prAuthors.length > 0) {
resultString += `PR Authors: ${prAuthors.join(', ')}\n`;
resultString += `PR Authors: ${prAuthors.join(', ')}`;
} else {
resultString += `PR Authors: No one :(\n`;
resultString += `PR Authors: No one :(`;
}
await github.issues.createComment({
Expand Down

0 comments on commit 1e33ecd

Please sign in to comment.