diff --git a/dist/index.js b/dist/index.js index b8a3bf29..a675ed37 100644 --- a/dist/index.js +++ b/dist/index.js @@ -5885,6 +5885,7 @@ async function main() { await Promise.all(workflow_ids.map(async (workflow_id) => { try { const { data } = await octokit.actions.listWorkflowRuns({ + per_page: 100, owner, repo, workflow_id, diff --git a/src/index.ts b/src/index.ts index 7f927e9a..d80c5f4e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -60,6 +60,7 @@ async function main(): Promise { workflow_ids.map(async workflow_id => { try { const { data } = await octokit.actions.listWorkflowRuns({ + per_page: 100, owner, repo, workflow_id,