Skip to content

Commit

Permalink
Fix TriagerX workflow duplicate prAssignees
Browse files Browse the repository at this point in the history
Fix TriagerX workflow list of duplicate prAssignees

Closes: eclipse-openj9#20425

Signed-off-by: LongyuZhang <[email protected]>
  • Loading branch information
LongyuZhang authored and zl-wang committed Nov 8, 2024
1 parent 8ed80fc commit 1538bd4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/TriageClosedIssue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ jobs:
}
if (prAssignees.length > 0) {
resultString += `PR Assignees: ${prAssignees.join(', ')}`;
let prUniqueAssignees = [...new Set(prAssignees)];
resultString += `PR Assignees: ${prUniqueAssignees.join(', ')}`;
} else {
resultString += `PR Assignees: No one :(`;
}
Expand Down

0 comments on commit 1538bd4

Please sign in to comment.