chore: actually build

Signed-off-by: izzy <me@insrt.uk>
This commit is contained in:
izzy
2026-01-24 23:43:18 +00:00
parent 976a691cb8
commit 4bc5c942e4
+4 -2
View File
@@ -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);
}
)
]);