From 9a68a35ac6ae087228774a1b3b7f673891204cfe Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Tue, 16 Dec 2025 17:00:00 -0800 Subject: [PATCH] No tags --- utils/setup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/setup.ts b/utils/setup.ts index 8047336..07b42a3 100644 --- a/utils/setup.ts +++ b/utils/setup.ts @@ -111,7 +111,7 @@ export async function setupGit(ctx: Context): Promise { // checkout PR branch using plain git (no gh cli needed) const branch = pr.data.head.ref; log.info(`🌿 Checking out PR #${prNumber} (${branch})...`); - $("git", ["fetch", "origin", `pull/${prNumber}/head:${branch}`], { cwd: repoDir }); + $("git", ["fetch", "--no-tags", "origin", `pull/${prNumber}/head:${branch}`], { cwd: repoDir }); $("git", ["checkout", branch], { cwd: repoDir }); log.info(`✓ Successfully checked out PR #${prNumber}`);