From d94a82689976cbb7d5eff9991729f347fca27b97 Mon Sep 17 00:00:00 2001 From: Peter Evans <18365890+peter-evans@users.noreply.github.com> Date: Fri, 9 Aug 2024 12:36:09 +0000 Subject: [PATCH] debug commit verification --- dist/index.js | 1 + src/github-helper.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/dist/index.js b/dist/index.js index d2785c6..05af999 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1317,6 +1317,7 @@ class GitHubHelper { } const { data: remoteCommit } = yield this.octokit.rest.git.createCommit(Object.assign(Object.assign({}, repository), { parents: parents, tree: treeSha, message: `${commit.subject}\n\n${commit.body}` })); core.info(`Created commit ${remoteCommit.sha} for local commit ${commit.sha}`); + core.debug(`Commit verification: ${remoteCommit.verification}`); return remoteCommit.sha; }); } diff --git a/src/github-helper.ts b/src/github-helper.ts index 0090d35..3505d26 100644 --- a/src/github-helper.ts +++ b/src/github-helper.ts @@ -270,6 +270,7 @@ export class GitHubHelper { core.info( `Created commit ${remoteCommit.sha} for local commit ${commit.sha}` ) + core.debug(`Commit verification: ${remoteCommit.verification}`) return remoteCommit.sha }