From 83eb7abd438f55161663e1b9381da5930cde06be Mon Sep 17 00:00:00 2001 From: amine Date: Sun, 10 Nov 2019 18:31:29 +0100 Subject: vendor: update github.com/xanzy/go-gitlab to v0.22.0 --- vendor/github.com/xanzy/go-gitlab/pipelines.go | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'vendor/github.com/xanzy/go-gitlab/pipelines.go') diff --git a/vendor/github.com/xanzy/go-gitlab/pipelines.go b/vendor/github.com/xanzy/go-gitlab/pipelines.go index bf3f814b..071e5e50 100644 --- a/vendor/github.com/xanzy/go-gitlab/pipelines.go +++ b/vendor/github.com/xanzy/go-gitlab/pipelines.go @@ -33,8 +33,9 @@ type PipelinesService struct { // // GitLab API docs: https://docs.gitlab.com/ce/api/pipelines.html type PipelineVariable struct { - Key string `json:"key"` - Value string `json:"value"` + Key string `json:"key"` + Value string `json:"value"` + VariableType string `json:"variable_type"` } // Pipeline represents a GitLab pipeline. @@ -82,11 +83,13 @@ func (p Pipeline) String() string { // PipelineInfo shows the basic entities of a pipeline, mostly used as fields // on other assets, like Commit. type PipelineInfo struct { - ID int `json:"id"` - Status string `json:"status"` - Ref string `json:"ref"` - SHA string `json:"sha"` - WebURL string `json:"web_url"` + ID int `json:"id"` + Status string `json:"status"` + Ref string `json:"ref"` + SHA string `json:"sha"` + WebURL string `json:"web_url"` + UpdatedAt *time.Time `json:"updated_at"` + CreatedAt *time.Time `json:"created_at"` } func (p PipelineInfo) String() string { -- cgit