We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2aa09c commit c76b3eeCopy full SHA for c76b3ee
index.js
@@ -42,7 +42,7 @@ module.exports = (app) => {
42
return;
43
}
44
45
- log(pr, 'Request received');
+ log(pr, `Request received [Context: ${context.id}]`);
46
47
let prBody = pr.body;
48
@@ -129,7 +129,7 @@ module.exports = (app) => {
129
130
// send check back to GitHub
131
const response = await context.octokit.checks.create(context.repo(check));
132
- log(pr, `Check response status from GitHub ${response.status}`);
+ log(pr, `Check response status from GitHub ${response.status} [X-GitHub-Request-Id: ${response.headers['x-github-request-id']}]`);
133
134
135
});
0 commit comments