Compare commits

...

3 Commits

Author SHA1 Message Date
Anton Krivenko 30fb8f885f Merge pull request #114 from takirala/tga/add-labels-support
gitlab: Add labels array in MergeRequestEventPayload
2020-11-10 23:20:39 +03:00
Anton Krivenko 957d07ee07 Update .travis.yml (#120) 2020-11-10 08:54:38 +03:00
Tarun Gupta Akirala 4156f32687 gitlab: Add labels array in MergeRequestEventPayload 2020-07-14 20:50:27 -07:00
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
language: go
go:
- 1.12.1
- 1.13.15
- tip
matrix:
allow_failures:
@@ -29,6 +29,6 @@ script:
- make test
after_success: |
[ $TRAVIS_GO_VERSION = 1.11.2 ] &&
[ $TRAVIS_GO_VERSION = 1.13.15 ] &&
overalls -project="github.com/go-playground/webhooks" -covermode=count -ignore=.git,_examples,testdata -debug &&
goveralls -coverprofile=overalls.coverprofile -service travis-ci -repotoken $COVERALLS_TOKEN
+1
View File
@@ -56,6 +56,7 @@ type MergeRequestEventPayload struct {
Changes Changes `json:"changes"`
Project Project `json:"project"`
Repository Repository `json:"repository"`
Labels []Label `json:"labels"`
}
// PushEventPayload contains the information for GitLab's push event