Skip to content

Commit 1005d22

Browse files
authored
Update update-prs.js
1 parent 317dc76 commit 1005d22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/update-prs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const updatePrs = async ({ github, context }) => {
1010
per_page: 100
1111
});
1212

13-
const nonDraftPulls = pulls?.data?.filter((pr) => !pr.draft);
13+
const nonDraftPulls = pulls?.data?.filter((pr) => !pr.draft && pr.user.login !== "dependabot[bot]");
1414
let updatedBranches = 0;
1515

1616
if (nonDraftPulls?.length > 0) {

0 commit comments

Comments
 (0)