From 0912272722a315965f1b7e61e9888e7c5dc6a1c5 Mon Sep 17 00:00:00 2001 From: btea <2356281422@qq.com> Date: Mon, 4 May 2026 11:19:59 +0800 Subject: [PATCH 1/2] chore: output debug info display pkg.pr.new version --- packages/cli/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/cli/index.ts b/packages/cli/index.ts index b893d5d6..69abfb72 100644 --- a/packages/cli/index.ts +++ b/packages/cli/index.ts @@ -621,6 +621,10 @@ const main = defineCommand({ } const debug = laterRes.debug; + // include the new version in the debug output for better visibility + Object.assign(debug, { + pkgPrNewVersion: pkg.version, + }) core.startGroup("🔍 Info"); core.notice(JSON.stringify(debug, null, 2)); From d110dc67444e3409f9f98a98c56b9854cf1f939c Mon Sep 17 00:00:00 2001 From: btea <2356281422@qq.com> Date: Mon, 4 May 2026 11:25:07 +0800 Subject: [PATCH 2/2] chore: format --- packages/cli/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/index.ts b/packages/cli/index.ts index 69abfb72..c175f3b6 100644 --- a/packages/cli/index.ts +++ b/packages/cli/index.ts @@ -624,7 +624,7 @@ const main = defineCommand({ // include the new version in the debug output for better visibility Object.assign(debug, { pkgPrNewVersion: pkg.version, - }) + }); core.startGroup("🔍 Info"); core.notice(JSON.stringify(debug, null, 2));