@@ -17,6 +17,39 @@ type GithubReposRepoPull struct {
1717 Number int `json:"number"`
1818}
1919
20+ type GitHubIssueComment struct {
21+ URL string `json:"url"`
22+ HTMLURL string `json:"html_url"`
23+ IssueURL string `json:"issue_url"`
24+ ID int `json:"id"`
25+ NodeID string `json:"node_id"`
26+ User struct {
27+ Login string `json:"login"`
28+ ID int `json:"id"`
29+ NodeID string `json:"node_id"`
30+ AvatarURL string `json:"avatar_url"`
31+ GravatarID string `json:"gravatar_id"`
32+ URL string `json:"url"`
33+ HTMLURL string `json:"html_url"`
34+ FollowersURL string `json:"followers_url"`
35+ FollowingURL string `json:"following_url"`
36+ GistsURL string `json:"gists_url"`
37+ StarredURL string `json:"starred_url"`
38+ SubscriptionsURL string `json:"subscriptions_url"`
39+ OrganizationsURL string `json:"organizations_url"`
40+ ReposURL string `json:"repos_url"`
41+ EventsURL string `json:"events_url"`
42+ ReceivedEventsURL string `json:"received_events_url"`
43+ Type string `json:"type"`
44+ SiteAdmin bool `json:"site_admin"`
45+ } `json:"user"`
46+ CreatedAt time.Time `json:"created_at"`
47+ UpdatedAt time.Time `json:"updated_at"`
48+ AuthorAssociation string `json:"author_association"`
49+ Body string `json:"body"`
50+ PerformedViaGithubApp interface {} `json:"performed_via_github_app"`
51+ }
52+
2053type GitHubPullRequest struct {
2154 URL string `json:"url"`
2255 ID int `json:"id"`
0 commit comments