Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
chore: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
z0al committed Dec 25, 2021
1 parent 7f9ea58 commit 1431e23
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/support.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ function isDependabotPR(issue: Issue) {
return issue.user?.login === 'dependabot[bot]';
}

export function isSupported(config: { ignore_dependabot: string }, issue: Issue) {
export function isSupported(
config: { ignore_dependabot: string },
issue: Issue
) {
return !(config.ignore_dependabot === 'on' && isDependabotPR(issue));
}

0 comments on commit 1431e23

Please sign in to comment.