Skip to content

Commit b6ea134

Browse files
committed
Fix pagination issue in libc++ buildbot restarter
1 parent 45964eb commit b6ea134

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/restart-preempted-libcxx-jobs.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ jobs:
6363
const check_suites = await github.rest.checks.listForSuite({
6464
owner: context.repo.owner,
6565
repo: context.repo.repo,
66-
check_suite_id: context.payload.workflow_run.check_suite_id
66+
check_suite_id: context.payload.workflow_run.check_suite_id,
67+
per_page: 100 // FIXME: We don't have 100 check runs yet, but we should handle this better.
6768
})
6869
6970
check_run_ids = [];

0 commit comments

Comments
 (0)