From 2f82ff3787d15a8bc04439e4926d23c7abdd74f9 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Tue, 13 Jan 2026 18:43:24 +0800 Subject: [PATCH] fix: beta workflow - remove incorrect push that prevents PR creation (#6709) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: louislam <1336778+louislam@users.noreply.github.com> --- extra/beta/update-version.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/beta/update-version.js b/extra/beta/update-version.js index 240d44608..5465763df 100644 --- a/extra/beta/update-version.js +++ b/extra/beta/update-version.js @@ -58,8 +58,8 @@ function commit(version) { throw new Error("commit error"); } - res = childProcess.spawnSync("git", ["push", "origin", "master"]); - console.log(res.stdout.toString().trim()); + // Note: Push is handled by gh pr create in the release script + // No need to push here as we're on a release branch, not master } /**