Commit d84eab7f authored by Jeremie Bresson's avatar Jeremie Bresson
Browse files

Merge remote-tracking branch 'origin/main' into 6.x

No related merge requests found
Showing with 11 additions and 1 deletion
+11 -1
......@@ -28,6 +28,7 @@ public class Pipeline {
private Float queuedDuration;
private String webUrl;
private DetailedStatus detailedStatus;
private String name;
public Long getId() {
return id;
......@@ -207,6 +208,14 @@ public class Pipeline {
this.detailedStatus = detailedStatus;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return (JacksonJson.toJsonString(this));
......
......@@ -32,5 +32,6 @@
"favicon": "/assets/ci_favicons/favicon_status_pending-5bdf338420e5221ca24353b6bff1c9367189588750632e9a871b7af09ff6a2ae.png"
},
"coverage": "30.0",
"web_url": "https://example.com/foo/bar/pipelines/46"
"web_url": "https://example.com/foo/bar/pipelines/46",
"name": "Custom pipeline name"
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment