Skip to content

Commit 4c969cd

Browse files
committed
Prettier
1 parent 76fe3af commit 4c969cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/lib/approval.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ class ApprovalManager {
6969
// Filter out existing status labels
7070
const statusLabels = ["accepted", "turned-down", "timed-out", "proposed"];
7171
const existingLabels = issue.data.labels
72-
.map(label => typeof label === 'string' ? label : label.name)
73-
.filter(label => !statusLabels.includes(label));
72+
.map((label) => (typeof label === "string" ? label : label.name))
73+
.filter((label) => !statusLabels.includes(label));
7474

7575
// Determine new status label
7676
let newStatusLabel;
@@ -171,7 +171,7 @@ class ApprovalManager {
171171
// Update awaiting lists
172172
this.awaitingCore = this.coreTeamMembers.filter((u) => !this.coreApprovals.has(u) && !this.coreRejections.has(u));
173173
this.awaitingMaintainers = this.maintainerTeamMembers.filter(
174-
(u) => !this.maintainerApprovals.has(u) && !this.maintainerRejections.has(u),
174+
(u) => !this.maintainerApprovals.has(u) && !this.maintainerRejections.has(u)
175175
);
176176
}
177177
}

0 commit comments

Comments
 (0)