diff --git a/scripts/release/shared-commands/get-build-id-for-commit.js b/scripts/release/shared-commands/get-build-id-for-commit.js index fa0c2ebec4a72..dc82bbb3f183c 100644 --- a/scripts/release/shared-commands/get-build-id-for-commit.js +++ b/scripts/release/shared-commands/get-build-id-for-commit.js @@ -19,7 +19,7 @@ async function getBuildIdForCommit(sha, allowBrokenCI = false) { const retryLimit = Date.now() + RETRY_TIMEOUT; retry: while (true) { const statusesResponse = await fetch( - `https://api.github.com/repos/facebook/react/commits/${sha}/status` + `https://api.github.com/repos/facebook/react/commits/${sha}/status?per_page=100` ); if (!statusesResponse.ok) {