Skip to content

Commit

Permalink
Merge pull request #20426 from LongyuZhang/triage1
Browse files Browse the repository at this point in the history
Fix TriagerX workflow duplicate prAssignees
  • Loading branch information
llxia authored Oct 29, 2024
2 parents 0e6e83c + 4742953 commit 7075207
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 7075207

Please sign in to comment.