File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -685,6 +685,8 @@ type ObjectAttributes struct {
685
685
// PipelineObjectAttributes contains pipeline specific GitLab object attributes information
686
686
type PipelineObjectAttributes struct {
687
687
ID int64 `json:"id"`
688
+ IID int64 `json:"iid"`
689
+ Name string `json:"name"`
688
690
Ref string `json:"ref"`
689
691
Tag bool `json:"tag"`
690
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"`
698
700
Variables []Variable `json:"variables"`
701
+ Url string `json:"url"`
699
702
}
700
703
701
704
// Variable contains pipeline variables
Original file line number Diff line number Diff line change 2
2
"object_kind" : " pipeline" ,
3
3
"object_attributes" :{
4
4
"id" : 31 ,
5
+ "iid" : 3 ,
6
+ "name" : " pipeline_name" ,
5
7
"ref" : " master" ,
6
8
"tag" : false ,
7
9
"sha" : " bcbb5ec396a2c0f828686f14fac9b80b780504f2" ,
21
23
"key" : " NESTOR_PROD_ENVIRONMENT" ,
22
24
"value" : " us-west-1"
23
25
}
24
- ]
26
+ ],
27
+ "url" : " http://192.168.64.1:3005/gitlab-org/gitlab-test/-/pipelines/31"
25
28
},
26
29
"merge_request" : {
27
30
"id" : 1 ,
You can’t perform that action at this time.
0 commit comments