From a1f6f07db5fbdfe3985bd7f12b02c332941f20e1 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sun, 9 Nov 2025 12:10:41 +0100 Subject: [PATCH] fir(git-node): include full URL in suggested `gh` command --- lib/landing_session.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/landing_session.js b/lib/landing_session.js index 139eabc3..19944ba4 100644 --- a/lib/landing_session.js +++ b/lib/landing_session.js @@ -464,8 +464,8 @@ export default class LandingSession extends Session { const url = `https://github.com/${owner}/${repo}/pull/${prid}`; cli.log(`2. Post "Landed in ${willBeLanded}" in ${url}`); if (isGhAvailable()) { - cli.log(` gh pr comment ${prid} --body "Landed in ${willBeLanded}"`); - cli.log(` gh pr close ${prid}`); + cli.log(` gh pr comment ${url} --body "Landed in ${willBeLanded}"`); + cli.log(` gh pr close ${url}`); } }