From 4bc5c942e4603bffa0806b51d5fe5f0bc5deb0ac Mon Sep 17 00:00:00 2001 From: izzy Date: Sat, 24 Jan 2026 23:43:18 +0000 Subject: [PATCH] chore: actually build Signed-off-by: izzy --- dist/index.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 27bd9c1..407d81e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -47024,7 +47024,9 @@ var inputs = { state: "open", per_page: 100 }, - (response) => response.data.map(toPullRequest) + /* eslint-disable -- go away */ + (response) => response.data.filter((pr) => pr.head.repo?.full_name === pr.base.repo.full_name).map(toPullRequest) + /* eslint-enable */ ), octokit.paginate( "GET /repos/{owner}/{repo}/pulls", @@ -47038,7 +47040,7 @@ var inputs = { if (historyLimit > 0 && closedPullRequestCount >= historyLimit) { done(); } - return response.data.map(toPullRequest); + return response.data.filter((pr) => pr.head.repo?.full_name === pr.base.repo.full_name).map(toPullRequest); } ) ]);