Skip to content

Commit

Permalink
chore: omit return false until live
Browse files Browse the repository at this point in the history
  • Loading branch information
Keyrxng committed Aug 19, 2024
1 parent 7bfe815 commit 9215562
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/helpers/task-deadline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ export async function handleDeadline(

if (assigneeIds.length && metadata.taskAssignees?.some((a) => !assigneeIds.includes(a))) {
logger.info(`Assignees mismatch found for ${issue.html_url}`, {
metadata: metadata.taskAssignees,
issue: assigneeIds,
metadata,
assigneeIds,
});
return false;
// return false;
}

const deadline = DateTime.fromISO(metadata.taskDeadline);
Expand Down

0 comments on commit 9215562

Please sign in to comment.