Skip to content
Open
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 @@ -9,6 +9,7 @@ public class DownstreamPipeline implements Serializable {
private static final long serialVersionUID = 1L;

private Long id;
private Long projectId;
private String sha;
private String ref;
private String status;
Expand All @@ -24,6 +25,14 @@ public void setId(Long id) {
this.id = id;
}

public Long getProjectId() {
return projectId;
}

public void setProjectId(Long projectId) {
this.projectId = projectId;
}

public String getSha() {
return sha;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
},
"downstream_pipeline": {
"id": 5,
"project_id": 8,
"sha": "f62a4b2fb89754372a346f24659212eb8da13601",
"ref": "main",
"status": "pending",
Expand Down