debug: adding context debugging

This commit is contained in:
Michael Shick 2020-04-08 16:47:27 -07:00
parent 5d9e844aad
commit 76a68e3329
No known key found for this signature in database
GPG key ID: ADF5BC9704BB4A61
2 changed files with 4 additions and 4 deletions

4
dist/index.js vendored
View file

@ -2006,7 +2006,7 @@ const getPulls = async (repoToken, repo, commitSha) => {
const body = await response.readBody();
core.debug(body);
core.debug(JSON.stringify(body));
return body;
};
@ -2024,7 +2024,7 @@ async function run() {
payload: { pull_request: pullRequest, sha, repository },
} = github.context;
core.debug(github.context);
core.debug(JSON.stringify(github.context));
const { full_name: repoFullName } = repository;