Skip to content

Commit

Permalink
fix syntax error (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
craigdmckenna authored Jan 11, 2021
1 parent c3fcc81 commit fca1c60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ async function getDesiredReviewAssignments(client, config) {
const individualAssignments = condition.assign.individuals || [];
const teamAssignments = condition.assign.teams || [];

if (authorIgnoreSet.includes(author) {
if (authorIgnoreSet.includes(author)) {
continue;
}

Expand Down

0 comments on commit fca1c60

Please sign in to comment.