Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: branch is undefined #33

Merged
merged 22 commits into from
Apr 4, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: pull request ref, sha, message
amondnet committed Apr 4, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 642181de9bb59ac06546d71474fb500a951b136b
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -35,10 +35,10 @@ async function run() {
.toString()
.trim();
if (github.context.eventName === 'push') {
const pushPayload = github.context.payload as Webhooks.WebhookPayloadPush;
const pushPayload = github.context.payload;
core.debug(`The head commit is: ${pushPayload.head_commit}`);
} else if ( github.context.eventName === 'pull_request') {
const pullRequestPayload = github.context.payload as Webhooks.WebhookPayloadPullRequest;
const pullRequestPayload = github.context.payload;
ref = pullRequestPayload.head.ref;
sha = pullRequestPayload.head.sha;
if ( octokit ) {