File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
main/java/org/gitlab4j/api/models
test/resources/org/gitlab4j/models Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ public class Job implements Serializable {
25
25
private ArtifactsFile artifactsFile ;
26
26
private List <Artifact > artifacts ;
27
27
private Boolean tag ;
28
+ private List <String > tagList ;
28
29
private String webUrl ;
29
30
private String stage ;
30
31
private JobStatus status ;
@@ -141,6 +142,14 @@ public void setTag(Boolean tag) {
141
142
this .tag = tag ;
142
143
}
143
144
145
+ public List <String > getTagList () {
146
+ return tagList ;
147
+ }
148
+
149
+ public void setTagList (List <String > tagList ) {
150
+ this .tagList = tagList ;
151
+ }
152
+
144
153
public String getWebUrl () {
145
154
return webUrl ;
146
155
}
Original file line number Diff line number Diff line change 36
36
"status" : " failed" ,
37
37
"failure_reason" : " script_failure" ,
38
38
"tag" : false ,
39
+ "tag_list" : [
40
+ " docker runner" , " win10-2004"
41
+ ],
39
42
"web_url" : " https://example.com/foo/bar/-/jobs/7" ,
40
43
"allow_failure" : false ,
41
44
"erased_at" : " 2016-01-11T11:30:19.914Z" ,
You can’t perform that action at this time.
0 commit comments