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 200ca6c commit 0b453caCopy full SHA for 0b453ca
gitlab/payload.go
@@ -38,6 +38,7 @@ type IssueEventPayload struct {
38
Repository Repository `json:"repository"`
39
ObjectAttributes ObjectAttributes `json:"object_attributes"`
40
Assignee Assignee `json:"assignee"`
41
+ Assignees []Assignee `json:"assignees"`
42
Changes Changes `json:"changes"`
43
}
44
testdata/gitlab/issue-event.json
@@ -77,5 +77,10 @@
77
"name": "User1",
78
"username": "user1",
79
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\u0026d=identicon"
80
- }
+ },
81
+ "assignees": [{
82
+ "name": "User1",
83
+ "username": "user1",
84
+ "avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\u0026d=identicon"
85
+ }]
86
0 commit comments