Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public class Job implements Serializable {
private ArtifactsFile artifactsFile;
private List<Artifact> artifacts;
private Boolean tag;
private List<String> tagList;
private String webUrl;
private String stage;
private JobStatus status;
Expand Down Expand Up @@ -141,6 +142,14 @@ public void setTag(Boolean tag) {
this.tag = tag;
}

public List<String> getTagList() {
return tagList;
}

public void setTagList(List<String> tagList) {
this.tagList = tagList;
}

public String getWebUrl() {
return webUrl;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
"status": "failed",
"failure_reason": "script_failure",
"tag": false,
"tag_list": [
"docker runner", "win10-2004"
],
"web_url": "https://example.com/foo/bar/-/jobs/7",
"allow_failure": false,
"erased_at": "2016-01-11T11:30:19.914Z",
Expand Down
Loading