From 5e475b76597f4c63acd184efab89bee784af786c Mon Sep 17 00:00:00 2001 From: Chuan-kai Lin Date: Mon, 21 Oct 2024 10:13:30 -0700 Subject: [PATCH] Add debug logging to runGitCommand() --- src/actions-util.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/actions-util.ts b/src/actions-util.ts index 8f39e331b..db7358320 100644 --- a/src/actions-util.ts +++ b/src/actions-util.ts @@ -56,6 +56,7 @@ async function runGitCommand( ): Promise { let stdout = ""; let stderr = ""; + core.debug(`Running git command: git ${args.join(" ")}`); try { await new toolrunner.ToolRunner(await safeWhich.safeWhich("git"), args, { silent: true,