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 {
2525 private ArtifactsFile artifactsFile ;
2626 private List <Artifact > artifacts ;
2727 private Boolean tag ;
28+ private List <String > tagList ;
2829 private String webUrl ;
2930 private String stage ;
3031 private JobStatus status ;
@@ -141,6 +142,14 @@ public void setTag(Boolean tag) {
141142 this .tag = tag ;
142143 }
143144
145+ public List <String > getTagList () {
146+ return tagList ;
147+ }
148+
149+ public void setTagList (List <String > tagList ) {
150+ this .tagList = tagList ;
151+ }
152+
144153 public String getWebUrl () {
145154 return webUrl ;
146155 }
Original file line number Diff line number Diff line change 3636 "status" : " failed" ,
3737 "failure_reason" : " script_failure" ,
3838 "tag" : false ,
39+ "tag_list" : [
40+ " docker runner" , " win10-2004"
41+ ],
3942 "web_url" : " https://example.com/foo/bar/-/jobs/7" ,
4043 "allow_failure" : false ,
4144 "erased_at" : " 2016-01-11T11:30:19.914Z" ,
You can’t perform that action at this time.
0 commit comments