Skip to content

Commit

Permalink
fix calculation for the labels to apply (#294)
Browse files Browse the repository at this point in the history
fix calculation for the labels to apply
  • Loading branch information
devoncarew authored Aug 30, 2024
1 parent 183fdd0 commit 6de3e8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/sdk_triage_bot/lib/triage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ ${trimmedBody(comment.body ?? '')}
await githubService.createComment(sdkSlug, issueNumber, comment);

final allRepoLabels = (await githubService.getAllLabels(sdkSlug)).toSet();
final labelAdditions = newLabels.toSet().union(allRepoLabels).toList()
final labelAdditions = newLabels.toSet().intersection(allRepoLabels).toList()
..sort();
if (labelAdditions.isNotEmpty) {
labelAdditions.add('triage-automation');
Expand Down

0 comments on commit 6de3e8c

Please sign in to comment.