fix: handle existing release branch in beta-release workflow (#6696)

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: louislam <1336778+louislam@users.noreply.github.com>
Co-authored-by: Louis Lam <louislam@users.noreply.github.com>
This commit is contained in:
Copilot
2026-01-13 14:03:09 +08:00
committed by GitHub
parent 17b6feb207
commit 4c2a3b9d63
2 changed files with 4 additions and 1 deletions

View File

@@ -307,7 +307,7 @@ export async function createDistTarGz() {
export async function createReleasePR(version, previousVersion, dryRun) {
const changelog = await generateChangelog(previousVersion);
const title = dryRun ? `build: update to ${version} (dry run)` : `build: update to ${version}`;
const title = dryRun ? `chore: update to ${version} (dry run)` : `chore: update to ${version}`;
const body = `## Release ${version}
This PR prepares the release for version ${version}.