feat: ignore dependabot events

This commit is contained in:
shiftinv 2023-03-04 21:07:31 +01:00
parent 04c2092b2d
commit 85c5f925f8
1 changed files with 3 additions and 1 deletions

View File

@ -64,7 +64,9 @@ export default async function filter(
// ignore bots
if (
login &&
["coveralls[bot]", "netlify[bot]", "pre-commit-ci[bot]"].some((n) => login.includes(n))
["coveralls[bot]", "netlify[bot]", "pre-commit-ci[bot]", "dependabot[bot]"].some((n) =>
login.includes(n)
)
) {
return "bot";
}