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}`);