Compare commits

..

17 Commits

Author SHA1 Message Date
Anton Krivenko 3c382736e0 Merge pull request #128 from juliojimenez/checks-installation-id
fix: Add Installation struct to CheckSuitePayload and CheckRunPayload
2021-05-03 23:42:40 +03:00
Anton Krivenko ec227ef416 Merge pull request #131 from riyadhalnur/fix/gitlab-mr-assignee
FIX: gitlab merge request event assignee payload
2021-05-03 23:40:17 +03:00
Riyadh Al Nur e55d994db5 FIX: gitlab merge request event assignee payload
- gitlab updated their MR payload which adds a parent field
for the list of assignees
- this fix update the Assignee struct to add the missing `Email`
and `ID` field
- adds an array of assignees as part of the MR event payload

Closes #101
2021-05-02 16:10:26 +08:00
Julio Jimenez 66bfeb55b9 fix: Add Installation struct to CheckSuitePayload and CheckRunPayload 2021-03-06 14:15:31 -05:00
Anton Krivenko e1c6b6436c Windows support to be checked... 2021-01-23 04:33:26 +03:00
Anton Krivenko 598a1cf5be Fix CI 2021-01-23 04:28:45 +03:00
Anton Krivenko f3cedb24ac Travis -> GitHub Actions 2021-01-23 04:21:20 +03:00
Anton Krivenko 82e53669b8 Fixed tests & minor changes in Makefile 2021-01-23 03:58:58 +03:00
Anton Krivenko cd70db9922 Merge pull request #107 from zrochler/gitlab-job-hook-build-payload
Add handling for job hooks with build payloads
2021-01-21 19:19:31 +03:00
Anton Krivenko b3a37b9b9a Merge pull request #126 from shaheed121/fix_gitlab_payload
Changing duration types from int64 to float64
2021-01-21 19:17:38 +03:00
Anton Krivenko e5ab838da3 Merge pull request #125 from go-playground/v6-go-modules
Go modules support
2021-01-15 00:10:05 +03:00
Abdul Shaheed 56d9dffd38 Changing duration types from int64 to float64 2021-01-11 20:27:51 +01:00
Anton Krivenko c99be7dbb8 CI fixes 2021-01-10 02:10:23 +03:00
Anton Krivenko 433ece5b7b Preparations for the go modules way of work 2021-01-10 01:30:18 +03:00
Zach Rochler a8ff1e82b4 Undo BuildDuration change 2021-01-05 16:23:11 -08:00
Zach Rochler cfd9712d30 Fix BuildDuration type 2020-04-15 15:26:28 -07:00
Zach Rochler a7a2c8c856 Add handling for job hooks with build payloads 2020-04-15 14:05:41 -07:00
17 changed files with 205 additions and 80 deletions
+52
View File
@@ -0,0 +1,52 @@
on:
push:
branches:
- master
pull_request:
name: Test
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Run linter
uses: golangci/golangci-lint-action@v2
with:
version: v1.35.2
test:
name: Test
strategy:
matrix:
go-version: [1.14.x, 1.15.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Restore cache
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-v1-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-v1-go-
- name: Run tests
run: go test -race -covermode=atomic -coverprofile="coverage.out" ./...
- name: Upload coverage report to Coveralls
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.15.x'
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.out
+16
View File
@@ -0,0 +1,16 @@
run:
tests: false
skip-dirs:
- _examples
linters:
enable:
- vet
- vetshadow
- golint
- megacheck
- ineffassign
- misspell
- errcheck
- goconst
- gofmt
-35
View File
@@ -1,35 +0,0 @@
language: go
go:
- 1.15.6
- tip
matrix:
allow_failures:
- go: tip
notifications:
email:
recipients: dean.karn@gmail.com
on_success: change
on_failure: always
before_install:
- go get -u github.com/go-playground/overalls
- go get -u github.com/mattn/goveralls
- go get -u golang.org/x/tools/cmd/cover
- mkdir -p $GOPATH/src/gopkg.in
- ln -s $GOPATH/src/github.com/$TRAVIS_REPO_SLUG $GOPATH/src/gopkg.in/webhooks.v2
- ln -s $GOPATH/src/github.com/$TRAVIS_REPO_SLUG $GOPATH/src/gopkg.in/webhooks.v3
- ln -s $GOPATH/src/github.com/$TRAVIS_REPO_SLUG $GOPATH/src/gopkg.in/webhooks.v4
- ln -s $GOPATH/src/github.com/$TRAVIS_REPO_SLUG $GOPATH/src/gopkg.in/webhooks.v5
- ln -s $GOPATH/src/github.com/$TRAVIS_REPO_SLUG $GOPATH/src/gopkg.in/webhooks.v6
before_script:
- go get -t ./...
script:
- make test
after_success: |
[ $TRAVIS_GO_VERSION = 1.15.6 ] &&
overalls -project="github.com/go-playground/webhooks" -covermode=count -ignore=.git,_examples,testdata -debug &&
goveralls -coverprofile=overalls.coverprofile -service travis-ci -repotoken $COVERALLS_TOKEN
+13 -9
View File
@@ -1,17 +1,21 @@
GOCMD=go GOPATH=$(shell go env GOPATH)
all: lint test
linters-install: linters-install:
@gometalinter --version >/dev/null 2>&1 || { \ @echo "+ $@"
echo "installing linting tools..."; \ @$(GOPATH)/bin/golangci-lint --version >/dev/null 2>&1 || { \
$(GOCMD) get github.com/alecthomas/gometalinter; \ echo "Install golangci-lint..."; \
gometalinter --install; \ curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOPATH)/bin; \
} }
lint: linters-install lint: linters-install
@gofmt -l . >gofmt.test 2>&1 && if [ -s gofmt.test ]; then echo "Fix formatting using 'gofmt -s -w .' for:"; cat gofmt.test; exit 1; fi && rm gofmt.test @echo "+ $@"
gometalinter --vendor --disable-all --enable=vet --enable=vetshadow --enable=golint --enable=megacheck --enable=ineffassign --enable=misspell --enable=errcheck --enable=goconst ./... $(GOPATH)/bin/golangci-lint run ./...
test: test:
$(GOCMD) test -cover -race ./... @echo "+ $@"
GO111MODULE=on go test -covermode=atomic -race ./...
.PHONY: test lint linters-install .PHONY: test lint linters-install
.DEFAULT_GOAL := all
+7 -7
View File
@@ -1,10 +1,10 @@
Library webhooks Library webhooks
================ ================
<img align="right" src="https://raw.githubusercontent.com/go-playground/webhooks/v6/logo.png">![Project status](https://img.shields.io/badge/version-6.0.0-green.svg) <img align="right" src="https://raw.githubusercontent.com/go-playground/webhooks/v6/logo.png">![Project status](https://img.shields.io/badge/version-6.0.0-green.svg)
[![Build Status](https://travis-ci.org/go-playground/webhooks.svg?branch=v6)](https://travis-ci.org/go-playground/webhooks) [![Test](https://github.com/go-playground/webhooks/workflows/Test/badge.svg?branch=master)](https://github.com/go-playground/webhooks/actions)
[![Coverage Status](https://coveralls.io/repos/go-playground/webhooks/badge.svg?branch=v6&service=github)](https://coveralls.io/github/go-playground/webhooks?branch=v6) [![Coverage Status](https://coveralls.io/repos/go-playground/webhooks/badge.svg?branch=master&service=github)](https://coveralls.io/github/go-playground/webhooks?branch=master)
[![Go Report Card](https://goreportcard.com/badge/go-playground/webhooks)](https://goreportcard.com/report/go-playground/webhooks) [![Go Report Card](https://goreportcard.com/badge/go-playground/webhooks)](https://goreportcard.com/report/go-playground/webhooks)
[![GoDoc](https://godoc.org/gopkg.in/go-playground/webhooks.v6?status.svg)](https://godoc.org/gopkg.in/go-playground/webhooks.v6) [![GoDoc](https://godoc.org/github.com/go-playground/webhooks/v6?status.svg)](https://godoc.org/github.com/go-playground/webhooks/v6)
![License](https://img.shields.io/dub/l/vibe-d.svg) ![License](https://img.shields.io/dub/l/vibe-d.svg)
Library webhooks allows for easy receiving and parsing of GitHub, Bitbucket and GitLab Webhook Events Library webhooks allows for easy receiving and parsing of GitHub, Bitbucket and GitLab Webhook Events
@@ -24,17 +24,17 @@ Installation
Use go get. Use go get.
```shell ```shell
go get -u gopkg.in/go-playground/webhooks.v6 go get -u github.com/go-playground/webhooks/v6
``` ```
Then import the package into your own code. Then import the package into your own code.
import "gopkg.in/go-playground/webhooks.v6" import "github.com/go-playground/webhooks/v6"
Usage and Documentation Usage and Documentation
------ ------
Please see http://godoc.org/gopkg.in/go-playground/webhooks.v6 for detailed usage docs. Please see http://godoc.org/github.com/go-playground/webhooks/v6 for detailed usage docs.
##### Examples: ##### Examples:
```go ```go
@@ -45,7 +45,7 @@ import (
"net/http" "net/http"
"gopkg.in/go-playground/webhooks.v6/github" "github.com/go-playground/webhooks/v6/github"
) )
const ( const (
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"net/http" "net/http"
"gopkg.in/go-playground/webhooks.v6/github" "github.com/go-playground/webhooks/v6/github"
) )
const ( const (
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"net/http" "net/http"
"gopkg.in/go-playground/webhooks.v6/github" "github.com/go-playground/webhooks/v6/github"
) )
const ( const (
+6 -6
View File
@@ -147,7 +147,7 @@ type PullRequestCommentAddedPayload struct {
Actor User `json:"actor"` Actor User `json:"actor"`
PullRequest PullRequest `json:"pullRequest"` PullRequest PullRequest `json:"pullRequest"`
Comment Comment `json:"comment"` Comment Comment `json:"comment"`
CommentParentId uint64 `json:"commentParentId,omitempty"` CommentParentID uint64 `json:"commentParentId,omitempty"`
} }
type PullRequestCommentEditedPayload struct { type PullRequestCommentEditedPayload struct {
@@ -156,7 +156,7 @@ type PullRequestCommentEditedPayload struct {
Actor User `json:"actor"` Actor User `json:"actor"`
PullRequest PullRequest `json:"pullRequest"` PullRequest PullRequest `json:"pullRequest"`
Comment Comment `json:"comment"` Comment Comment `json:"comment"`
CommentParentId string `json:"commentParentId,omitempty"` CommentParentID string `json:"commentParentId,omitempty"`
PreviousComment string `json:"previousComment"` PreviousComment string `json:"previousComment"`
} }
@@ -166,7 +166,7 @@ type PullRequestCommentDeletedPayload struct {
Actor User `json:"actor"` Actor User `json:"actor"`
PullRequest PullRequest `json:"pullRequest"` PullRequest PullRequest `json:"pullRequest"`
Comment Comment `json:"comment"` Comment Comment `json:"comment"`
CommentParentId uint64 `json:"commentParentId,omitempty"` CommentParentID uint64 `json:"commentParentId,omitempty"`
} }
// ----------------------- // -----------------------
@@ -186,7 +186,7 @@ type Repository struct {
ID uint64 `json:"id"` ID uint64 `json:"id"`
Slug string `json:"slug"` Slug string `json:"slug"`
Name string `json:"name"` Name string `json:"name"`
ScmId string `json:"scmId"` ScmID string `json:"scmId"`
State string `json:"state"` State string `json:"state"`
StatusMessage string `json:"statusMessage"` StatusMessage string `json:"statusMessage"`
Forkable bool `json:"forkable"` Forkable bool `json:"forkable"`
@@ -229,7 +229,7 @@ type PullRequest struct {
type RepositoryChange struct { type RepositoryChange struct {
Reference RepositoryReference `json:"ref"` Reference RepositoryReference `json:"ref"`
ReferenceId string `json:"refId"` ReferenceID string `json:"refId"`
FromHash string `json:"fromHash"` FromHash string `json:"fromHash"`
ToHash string `json:"toHash"` ToHash string `json:"toHash"`
Type string `json:"type"` Type string `json:"type"`
@@ -237,7 +237,7 @@ type RepositoryChange struct {
type RepositoryReference struct { type RepositoryReference struct {
ID string `json:"id"` ID string `json:"id"`
DisplayId string `json:"displayId"` DisplayID string `json:"displayId"`
Type string `json:"type,omitempty"` Type string `json:"type,omitempty"`
LatestCommit string `json:"latestCommit,omitempty"` LatestCommit string `json:"latestCommit,omitempty"`
Repository Repository `json:"repository,omitempty"` Repository Repository `json:"repository,omitempty"`
+1 -1
View File
@@ -350,7 +350,7 @@ type Owner struct {
Type string `json:"type"` Type string `json:"type"`
NickName string `json:"nickname"` NickName string `json:"nickname"`
DisplayName string `json:"display_name"` DisplayName string `json:"display_name"`
AccountId string `json:"account_id"` AccountID string `json:"account_id"`
UUID string `json:"uuid"` UUID string `json:"uuid"`
Links struct { Links struct {
Self struct { Self struct {
+1 -2
View File
@@ -1,6 +1,6 @@
package docker package docker
// this package recieves the Docker Hub Automated Build webhook // this package receives the Docker Hub Automated Build webhook
// https://docs.docker.com/docker-hub/webhooks/ // https://docs.docker.com/docker-hub/webhooks/
// NOT the Docker Trusted Registry webhook // NOT the Docker Trusted Registry webhook
// https://docs.docker.com/ee/dtr/user/create-and-manage-webhooks/ // https://docs.docker.com/ee/dtr/user/create-and-manage-webhooks/
@@ -58,7 +58,6 @@ type BuildPayload struct {
// Webhook instance contains all methods needed to process events // Webhook instance contains all methods needed to process events
type Webhook struct { type Webhook struct {
secret string
} }
// New creates and returns a WebHook instance // New creates and returns a WebHook instance
+10 -4
View File
@@ -13,7 +13,7 @@ type CheckRunPayload struct {
Status string `json:"status"` Status string `json:"status"`
Conclusion string `json:"conclusion"` Conclusion string `json:"conclusion"`
URL string `json:"url"` URL string `json:"url"`
HtmlURL string `json:"html_url"` HTMLURL string `json:"html_url"`
StarterAt time.Time `json:"started_at"` StarterAt time.Time `json:"started_at"`
CompletedAt time.Time `json:"completed_at"` CompletedAt time.Time `json:"completed_at"`
Output struct { Output struct {
@@ -59,7 +59,7 @@ type CheckRunPayload struct {
Name string `json:"name"` Name string `json:"name"`
Description string `json:"description"` Description string `json:"description"`
ExternalURL string `json:"external_url"` ExternalURL string `json:"external_url"`
HtmlURL string `json:"html_url"` HTMLURL string `json:"html_url"`
CreatedAt string `json:"created_at"` CreatedAt string `json:"created_at"`
UpdatedAt string `json:"updated_at"` UpdatedAt string `json:"updated_at"`
} `json:"app"` } `json:"app"`
@@ -92,7 +92,7 @@ type CheckRunPayload struct {
Name string `json:"name"` Name string `json:"name"`
Description string `json:"description"` Description string `json:"description"`
ExternalURL string `json:"external_url"` ExternalURL string `json:"external_url"`
HtmlURL string `json:"html_url"` HTMLURL string `json:"html_url"`
CreatedAt string `json:"created_at"` CreatedAt string `json:"created_at"`
UpdatedAt string `json:"updated_at"` UpdatedAt string `json:"updated_at"`
} `json:"app"` } `json:"app"`
@@ -187,6 +187,9 @@ type CheckRunPayload struct {
Watchers int64 `json:"watchers"` Watchers int64 `json:"watchers"`
DefaultBranch string `json:"default_branch"` DefaultBranch string `json:"default_branch"`
} `json:"repository"` } `json:"repository"`
Installation struct {
ID int64 `json:"id"`
} `json:"installation,omitempty"`
Sender struct { Sender struct {
Login string `json:"login"` Login string `json:"login"`
ID int64 `json:"id"` ID int64 `json:"id"`
@@ -249,7 +252,7 @@ type CheckSuitePayload struct {
Name string `json:"name"` Name string `json:"name"`
Description string `json:"description"` Description string `json:"description"`
ExternalURL string `json:"external_url"` ExternalURL string `json:"external_url"`
HtmlURL string `json:"html_url"` HTMLURL string `json:"html_url"`
CreatedAt string `json:"created_at"` CreatedAt string `json:"created_at"`
UpdatedAt string `json:"updated_at"` UpdatedAt string `json:"updated_at"`
} `json:"app"` } `json:"app"`
@@ -359,6 +362,9 @@ type CheckSuitePayload struct {
Watchers int64 `json:"watchers"` Watchers int64 `json:"watchers"`
DefaultBranch string `json:"default_branch"` DefaultBranch string `json:"default_branch"`
} `json:"repository"` } `json:"repository"`
Installation struct {
ID int64 `json:"id"`
} `json:"installation,omitempty"`
Sender struct { Sender struct {
Login string `json:"login"` Login string `json:"login"`
ID int64 `json:"id"` ID int64 `json:"id"`
+10 -3
View File
@@ -38,6 +38,7 @@ const (
objectPush string = "push" objectPush string = "push"
objectTag string = "tag_push" objectTag string = "tag_push"
objectMergeRequest string = "merge_request" objectMergeRequest string = "merge_request"
objectBuild string = "build"
) )
// Option is a configuration option for the webhook // Option is a configuration option for the webhook
@@ -173,9 +174,15 @@ func eventParsing(gitLabEvent Event, events []Event, payload []byte) (interface{
err := json.Unmarshal([]byte(payload), &pl) err := json.Unmarshal([]byte(payload), &pl)
return pl, err return pl, err
case JobEvents: case JobEvents:
var p1 JobEventPayload var pl JobEventPayload
err := json.Unmarshal([]byte(payload), &p1) err := json.Unmarshal([]byte(payload), &pl)
return p1, err if err != nil {
return nil, err
}
if pl.ObjectKind == objectBuild {
return eventParsing(BuildEvents, events, payload)
}
return pl, nil
case SystemHookEvents: case SystemHookEvents:
var pl SystemHookPayload var pl SystemHookPayload
+47 -4
View File
@@ -231,11 +231,54 @@ func TestWebhooks(t *testing.T) {
"X-Gitlab-Event": []string{"Build Hook"}, "X-Gitlab-Event": []string{"Build Hook"},
}, },
}, },
}
for _, tt := range tests {
tc := tt
client := &http.Client{}
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
payload, err := os.Open(tc.filename)
assert.NoError(err)
defer func() {
_ = payload.Close()
}()
var parseError error
var results interface{}
server := newServer(func(w http.ResponseWriter, r *http.Request) {
results, parseError = hook.Parse(r, tc.event)
})
defer server.Close()
req, err := http.NewRequest(http.MethodPost, server.URL+path, payload)
assert.NoError(err)
req.Header = tc.headers
req.Header.Set("Content-Type", "application/json")
req.Header.Set("X-Gitlab-Token", "sampleToken!")
resp, err := client.Do(req)
assert.NoError(err)
assert.Equal(http.StatusOK, resp.StatusCode)
assert.NoError(parseError)
assert.Equal(reflect.TypeOf(tc.typ), reflect.TypeOf(results))
})
}
}
func TestJobHooks(t *testing.T) {
assert := require.New(t)
tests := []struct {
name string
events []Event
typ interface{}
filename string
headers http.Header
}{
{ {
name: "JobEvent", name: "JobEvent",
event: JobEvents, events: []Event{JobEvents, BuildEvents},
typ: JobEventPayload{}, typ: BuildEventPayload{},
filename: "../testdata/gitlab/job-event.json", filename: "../testdata/gitlab/build-event.json",
headers: http.Header{ headers: http.Header{
"X-Gitlab-Event": []string{"Job Hook"}, "X-Gitlab-Event": []string{"Job Hook"},
}, },
@@ -256,7 +299,7 @@ func TestWebhooks(t *testing.T) {
var parseError error var parseError error
var results interface{} var results interface{}
server := newServer(func(w http.ResponseWriter, r *http.Request) { server := newServer(func(w http.ResponseWriter, r *http.Request) {
results, parseError = hook.Parse(r, tc.event) results, parseError = hook.Parse(r, tc.events...)
}) })
defer server.Close() defer server.Close()
req, err := http.NewRequest(http.MethodPost, server.URL+path, payload) req, err := http.NewRequest(http.MethodPost, server.URL+path, payload)
+9 -6
View File
@@ -57,6 +57,7 @@ type MergeRequestEventPayload struct {
Project Project `json:"project"` Project Project `json:"project"`
Repository Repository `json:"repository"` Repository Repository `json:"repository"`
Labels []Label `json:"labels"` Labels []Label `json:"labels"`
Assignees []Assignee `json:"assignees"`
} }
// PushEventPayload contains the information for GitLab's push event // PushEventPayload contains the information for GitLab's push event
@@ -143,7 +144,7 @@ type BuildEventPayload struct {
BuildStatus string `json:"build_status"` BuildStatus string `json:"build_status"`
BuildStartedAt customTime `json:"build_started_at"` BuildStartedAt customTime `json:"build_started_at"`
BuildFinishedAt customTime `json:"build_finished_at"` BuildFinishedAt customTime `json:"build_finished_at"`
BuildDuration int64 `json:"build_duration"` BuildDuration float64 `json:"build_duration"`
BuildAllowFailure bool `json:"build_allow_failure"` BuildAllowFailure bool `json:"build_allow_failure"`
ProjectID int64 `json:"project_id"` ProjectID int64 `json:"project_id"`
ProjectName string `json:"project_name"` ProjectName string `json:"project_name"`
@@ -165,7 +166,7 @@ type JobEventPayload struct {
BuildStatus string `json:"build_status"` BuildStatus string `json:"build_status"`
BuildStartedAt customTime `json:"build_started_at"` BuildStartedAt customTime `json:"build_started_at"`
BuildFinishedAt customTime `json:"build_finished_at"` BuildFinishedAt customTime `json:"build_finished_at"`
BuildDuration int64 `json:"build_duration"` BuildDuration float64 `json:"build_duration"`
BuildAllowFailure bool `json:"build_allow_failure"` BuildAllowFailure bool `json:"build_allow_failure"`
BuildFailureReason string `json:"build_failure_reason"` BuildFailureReason string `json:"build_failure_reason"`
PipelineID int64 `json:"pipeline_id"` PipelineID int64 `json:"pipeline_id"`
@@ -257,10 +258,10 @@ type BuildCommit struct {
ID int64 `json:"id"` ID int64 `json:"id"`
SHA string `json:"sha"` SHA string `json:"sha"`
Message string `json:"message"` Message string `json:"message"`
AuthorName string `json:"auuthor_name"` AuthorName string `json:"author_name"`
AuthorEmail string `json:"author_email"` AuthorEmail string `json:"author_email"`
Status string `json:"status"` Status string `json:"status"`
Duration int64 `json:"duration"` Duration float64 `json:"duration"`
StartedAt customTime `json:"started_at"` StartedAt customTime `json:"started_at"`
FinishedAt customTime `json:"finished_at"` FinishedAt customTime `json:"finished_at"`
} }
@@ -363,11 +364,11 @@ type ObjectAttributes struct {
Stages []string `json:"stages"` Stages []string `json:"stages"`
Duration int64 `json:"duration"` Duration int64 `json:"duration"`
Note string `json:"note"` Note string `json:"note"`
NotebookType string `json:"noteable_type"` NotebookType string `json:"noteable_type"` // nolint:misspell
At customTime `json:"attachment"` At customTime `json:"attachment"`
LineCode string `json:"line_code"` LineCode string `json:"line_code"`
CommitID string `json:"commit_id"` CommitID string `json:"commit_id"`
NoteableID int64 `json:"noteable_id"` NoteableID int64 `json:"noteable_id"` // nolint: misspell
System bool `json:"system"` System bool `json:"system"`
WorkInProgress bool `json:"work_in_progress"` WorkInProgress bool `json:"work_in_progress"`
StDiffs []StDiff `json:"st_diffs"` StDiffs []StDiff `json:"st_diffs"`
@@ -449,9 +450,11 @@ type MergeRequest struct {
// Assignee contains all of the GitLab assignee information // Assignee contains all of the GitLab assignee information
type Assignee struct { type Assignee struct {
ID int64 `json:"id"`
Name string `json:"name"` Name string `json:"name"`
Username string `json:"username"` Username string `json:"username"`
AvatarURL string `json:"avatar_url"` AvatarURL string `json:"avatar_url"`
Email string `json:"email"`
} }
// StDiff contains all of the GitLab diff information // StDiff contains all of the GitLab diff information
+8
View File
@@ -0,0 +1,8 @@
module github.com/go-playground/webhooks/v6
go 1.15
require (
github.com/gogits/go-gogs-client v0.0.0-20200905025246-8bb8a50cb355
github.com/stretchr/testify v1.6.1
)
+13
View File
@@ -0,0 +1,13 @@
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/gogits/go-gogs-client v0.0.0-20200905025246-8bb8a50cb355 h1:HTVNOdTWO/gHYeFnr/HwpYwY6tgMcYd+Rgf1XrHnORY=
github.com/gogits/go-gogs-client v0.0.0-20200905025246-8bb8a50cb355/go.mod h1:cY2AIrMgHm6oOHmR7jY+9TtjzSjQ3iG7tURJG3Y6XH0=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.6.1 h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0=
github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
+10 -1
View File
@@ -136,5 +136,14 @@
"group_id": 41 "group_id": 41
}] }]
} }
} },
"assignees": [
{
"id": 6,
"name": "User1",
"username": "user1",
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=40\u0026d=identicon",
"email": "user1@gmail.com"
}
]
} }