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 3bb05c2 commit d09e464Copy full SHA for d09e464
github/issues_events.go
@@ -18,6 +18,9 @@ type IssueEvent struct {
18
// The User that generated this event.
19
Actor *User `json:"actor,omitempty"`
20
21
+ // The action corresponding to the event.
22
+ Action string `json:"action,omitempty"`
23
+
24
// Event identifies the actual type of Event that occurred. Possible
25
// values are:
26
//
@@ -74,6 +77,7 @@ type IssueEvent struct {
74
77
Issue *Issue `json:"issue,omitempty"`
75
78
76
79
// Only present on certain events; see above.
80
+ Repository *Repository `json:"repository,omitempty"`
81
Assignee *User `json:"assignee,omitempty"`
82
Assigner *User `json:"assigner,omitempty"`
83
CommitID *string `json:"commit_id,omitempty"`
0 commit comments