File tree 2 files changed +20
-7
lines changed
2 files changed +20
-7
lines changed Original file line number Diff line number Diff line change 1
1
language : go
2
2
go :
3
- - 1.13.15
4
- - tip
3
+ - 1.13.15
4
+ - tip
5
5
matrix :
6
6
allow_failures :
7
7
- go : tip
8
8
9
9
notifications :
10
- email :
11
-
12
- on_success : change
13
- on_failure : always
10
+ email :
11
+
12
+ on_success : change
13
+ on_failure : always
14
14
15
15
before_install :
16
16
- go get -u github.com/go-playground/overalls
@@ -26,7 +26,7 @@ before_script:
26
26
- go get -t ./...
27
27
28
28
script :
29
- - make test
29
+ - make test
30
30
31
31
after_success : |
32
32
[ $TRAVIS_GO_VERSION = 1.13.15 ] &&
Original file line number Diff line number Diff line change @@ -1662,6 +1662,11 @@ type IssueCommentPayload struct {
1662
1662
Body string `json:"body"`
1663
1663
AuthorAssociation string `json:"author_association"`
1664
1664
} `json:"comment"`
1665
+ Changes * struct {
1666
+ Body * struct {
1667
+ From string `json:"from"`
1668
+ } `json:"body"`
1669
+ } `json:"changes"`
1665
1670
Repository struct {
1666
1671
ID int64 `json:"id"`
1667
1672
NodeID string `json:"node_id"`
@@ -1826,6 +1831,14 @@ type IssuesPayload struct {
1826
1831
ClosedAt * time.Time `json:"closed_at"`
1827
1832
Body string `json:"body"`
1828
1833
} `json:"issue"`
1834
+ Changes * struct {
1835
+ Title * struct {
1836
+ From string `json:"from"`
1837
+ } `json:"title"`
1838
+ Body * struct {
1839
+ From string `json:"from"`
1840
+ } `json:"body"`
1841
+ } `json:"changes"`
1829
1842
Repository struct {
1830
1843
ID int64 `json:"id"`
1831
1844
NodeID string `json:"node_id"`
You can’t perform that action at this time.
0 commit comments