Skip to content

Commit

Permalink
hotfix(label-checker): fix exemption logic
Browse files Browse the repository at this point in the history
  • Loading branch information
sumire88 committed Jan 11, 2024
1 parent ccba545 commit a0be0e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/check_pr_tested_label.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Processing
metadata.pull_request.labels
.map((label: any) => label.name)
.includes("tested") &&
metadata.pull_request.labels.some((label: string) =>
!metadata.pull_request.labels.some((label: string) =>
checkerExemptionLabels.includes(label),
)
) {
Expand Down

0 comments on commit a0be0e0

Please sign in to comment.