Skip to content
Merged
Changes from all commits
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
6 changes: 6 additions & 0 deletions github/payload.go
Original file line number Diff line number Diff line change
Expand Up @@ -4342,6 +4342,9 @@ type PullRequestReviewPayload struct {
Type string `json:"type"`
SiteAdmin bool `json:"site_admin"`
} `json:"sender"`
Installation struct {
ID int64 `json:"id"`
} `json:"installation"`
}

// PullRequestReviewCommentPayload contains the information for GitHub's pull_request_review_comments hook event
Expand Down Expand Up @@ -4806,6 +4809,9 @@ type PullRequestReviewCommentPayload struct {
Type string `json:"type"`
SiteAdmin bool `json:"site_admin"`
} `json:"sender"`
Installation struct {
ID int64 `json:"id"`
} `json:"installation"`
}

// PushPayload contains the information for GitHub's push hook event
Expand Down