diff --git a/gitea/issue.go b/gitea/issue.go index 206c52a..9cf5924 100644 --- a/gitea/issue.go +++ b/gitea/issue.go @@ -39,6 +39,7 @@ type Issue struct { Labels []*Label `json:"labels"` Milestone *Milestone `json:"milestone"` Assignee *User `json:"assignee"` + Assignees []*User `json:"assignees"` // Whether the issue is open or closed // // type: string diff --git a/gitea/pull.go b/gitea/pull.go index ee3fe11..cea202a 100644 --- a/gitea/pull.go +++ b/gitea/pull.go @@ -22,6 +22,7 @@ type PullRequest struct { Labels []*Label `json:"labels"` Milestone *Milestone `json:"milestone"` Assignee *User `json:"assignee"` + Assignees []*User `json:"assignees"` State StateType `json:"state"` Comments int `json:"comments"`