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 69430a8 commit e684b50Copy full SHA for e684b50
gitlab/payload.go
@@ -685,6 +685,8 @@ type ObjectAttributes struct {
685
// PipelineObjectAttributes contains pipeline specific GitLab object attributes information
686
type PipelineObjectAttributes struct {
687
ID int64 `json:"id"`
688
+ IID int64 `json:"iid"`
689
+ Name string `json:"name"`
690
Ref string `json:"ref"`
691
Tag bool `json:"tag"`
692
SHA string `json:"sha"`
@@ -696,6 +698,7 @@ type PipelineObjectAttributes struct {
696
698
FinishedAt customTime `json:"finished_at"`
697
699
Duration int64 `json:"duration"`
700
Variables []Variable `json:"variables"`
701
+ Url string `json:"url"`
702
}
703
704
// Variable contains pipeline variables
0 commit comments