diff --git a/dist/index.js b/dist/index.js index 05af999..ebf48ff 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 }