From 7fb22ab6819e6fc1486319d91f27782ad3541708 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Fri, 30 Jan 2026 10:28:54 -0500 Subject: [PATCH] ci --- script/beta.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/beta.ts b/script/beta.ts index 92625a854..f87e50754 100755 --- a/script/beta.ts +++ b/script/beta.ts @@ -66,7 +66,8 @@ async function main() { const compare = `${repo.nameWithOwner}/compare/dev...${head.headRepository.nameWithOwner}:${head.headRefName}` const diffResult = await $`gh api -H Accept:application/vnd.github.v3.diff repos/${compare}`.nothrow() if (diffResult.exitCode !== 0) { - console.log(` Failed to get diff`) + console.log(` Failed to get diff: ${diffResult.stderr}`) + console.log(` Compare: ${compare}`) skipped.push({ number: pr.number, reason: `Failed to get diff: ${diffResult.stderr}` }) continue }