We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01a1302 commit 65f5d60Copy full SHA for 65f5d60
github/payload.go
@@ -3255,7 +3255,19 @@ type PullRequestPayload struct {
3255
} `json:"sender"`
3256
Assignee *Assignee `json:"assignee"`
3257
RequestedReviewer *Assignee `json:"requested_reviewer"`
3258
- Installation struct {
+ RequestedTeam struct {
3259
+ Name string `json:"name"`
3260
+ ID int64 `json:"id"`
3261
+ Slug string `json:"slug"`
3262
+ Description string `json:"description"`
3263
+ Privacy string `json:"privacy"`
3264
+ URL string `json:"url"`
3265
+ HTMLURL string `json:"html_url"`
3266
+ MembersURL string `json:"members_url"`
3267
+ RepositoriesURL string `json:"repositories_url"`
3268
+ Permission string `json:"permission"`
3269
+ } `json:"requested_team"`
3270
+ Installation struct {
3271
ID int64 `json:"id"`
3272
} `json:"installation"`
3273
}
0 commit comments