From 0a0b54aa4b3ea20f45652bfc9d982922584e8448 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Fri, 30 Jan 2026 10:15:45 -0500 Subject: [PATCH] ci --- script/beta.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/beta.ts b/script/beta.ts index 7884fd248..a1a07ce9a 100755 --- a/script/beta.ts +++ b/script/beta.ts @@ -100,7 +100,7 @@ async function main() { skipped.forEach((x) => console.log(` - PR #${x.number}: ${x.reason}`)) console.log("\nForce pushing beta branch...") - const push = await $`git push origin beta --force`.nothrow() + const push = await $`git push origin beta --force --no-verify`.nothrow() if (push.exitCode !== 0) { throw new Error(`Failed to push beta branch: ${push.stderr}`) }