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 }