Skip to content

Commit

Permalink
Update update-prs.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke authored Sep 16, 2024
1 parent 317dc76 commit 1005d22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/update-prs.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const updatePrs = async ({ github, context }) => {
per_page: 100
});

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

if (nonDraftPulls?.length > 0) {
Expand Down

0 comments on commit 1005d22

Please sign in to comment.