From 6c78c664b39899f81180c1c134cf1152e7e30f48 Mon Sep 17 00:00:00 2001 From: zimij Date: Wed, 13 May 2026 11:19:37 +0200 Subject: [PATCH] chore: Add log output when checking isReleaseCommit --- src/commands.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/commands.ts b/src/commands.ts index a6f4d5e..cbf4ca9 100644 --- a/src/commands.ts +++ b/src/commands.ts @@ -57,6 +57,9 @@ export const getLatestReleaseTag: ( export const isReleaseCommit: (tagPrefix: string) => Promise = async (tagPrefix) => { try { const {stdout} = await exec(`git for-each-ref --points-at HEAD --format='%(refname)'`); + core.startGroup('Found the following git references that point to HEAD'); + core.info(`${stdout}`); + core.endGroup(); const regex = new RegExp(`^refs/tags/${tagPrefix}\\d+\\.\\d+\\.\\d+$`);