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+$`);