Can anyone help with how to fix "Please unblock challenges.cloudflare.com to proceed."
Can anyone help with how to fix "Please unblock challenges.cloudflare.com to proceed."
hasNextPage comes up false every time
export async function getAllDeploymentsForBranch({ branch }: { branch: string }) {
const cloudflare = new Cloudflare({
apiKey: CLOUDFLARE_API_TOKEN,
});
const deployments: Cloudflare.Pages.Projects.Deployment[] = [];
const request = cloudflare.pages.projects.deployments.list(CLOUDFLARE_PAGES_PROJECT_NAME, {
account_id: CLOUDFLARE_ACCOUNT_ID,
})
for await (const deployment of request) {
if (deployment.deployment_trigger?.metadata?.branch === branch) {
deployments.push(deployment);
}
}
return deployments;
}