From 93858f721d41a475a3f69f4444a07d1b1cc9f29b Mon Sep 17 00:00:00 2001 From: Peter Evans <18365890+peter-evans@users.noreply.github.com> Date: Fri, 9 Aug 2024 12:44:16 +0000 Subject: [PATCH] debug commit verification --- dist/index.js | 2 +- src/github-helper.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 94640a8..48f5f78 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1317,7 +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}`); + core.debug(`Commit verified: ${remoteCommit.verification.verified}; reason: ${remoteCommit.verification.reason}`); return remoteCommit.sha; }); } diff --git a/src/github-helper.ts b/src/github-helper.ts index 3505d26..6a46010 100644 --- a/src/github-helper.ts +++ b/src/github-helper.ts @@ -270,7 +270,7 @@ export class GitHubHelper { core.info( `Created commit ${remoteCommit.sha} for local commit ${commit.sha}` ) - core.debug(`Commit verification: ${remoteCommit.verification}`) + core.debug(`Commit verified: ${remoteCommit.verification.verified}; reason: ${remoteCommit.verification.reason}`) return remoteCommit.sha }