Skip to content

feat: add tag_list support to Job instances #1266

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 26, 2025
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