diff options
| author | Dax Raad <[email protected]> | 2026-01-30 10:28:54 -0500 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2026-01-30 10:28:54 -0500 |
| commit | 7fb22ab6819e6fc1486319d91f27782ad3541708 (patch) | |
| tree | 1f9261e32d0b5c1fce9753a97a6bce8d0e9966a7 /script | |
| parent | e4d3b961cd2217e19cd44f6b97dd92b485966afb (diff) | |
| download | opencode-7fb22ab6819e6fc1486319d91f27782ad3541708.tar.gz opencode-7fb22ab6819e6fc1486319d91f27782ad3541708.zip | |
ci
Diffstat (limited to 'script')
| -rwxr-xr-x | script/beta.ts | 3 |
1 files changed, 2 insertions, 1 deletions
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 } |
