Skip to content

Commit 608c486

Browse files
authored
Add allowMergeOnSkippedPipeline to Project (gitlab4j#846)
1 parent 3db0a87 commit 608c486

File tree

3 files changed

+27
-4
lines changed

3 files changed

+27
-4
lines changed

src/main/java/org/gitlab4j/api/MergeRequestApi.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ public Optional<MergeRequest> getOptionalMergeRequest(Object projectIdOrPath, Lo
331331
* @return a list containing the commits for the specified merge request
332332
* @throws GitLabApiException GitLabApiException if any exception occurs during execution
333333
*/
334-
public List<Commit> getCommits(Object projectIdOrPath, int mergeRequestIid) throws GitLabApiException {
334+
public List<Commit> getCommits(Object projectIdOrPath, Long mergeRequestIid) throws GitLabApiException {
335335
return (getCommits(projectIdOrPath, mergeRequestIid, getDefaultPerPage()).all());
336336
}
337337

@@ -349,7 +349,7 @@ public List<Commit> getCommits(Object projectIdOrPath, int mergeRequestIid) thro
349349
* @return a list containing the commits for the specified merge request
350350
* @throws GitLabApiException GitLabApiException if any exception occurs during execution
351351
*/
352-
public List<Commit> getCommits(Object projectIdOrPath, int mergeRequestIid, int page, int perPage) throws GitLabApiException {
352+
public List<Commit> getCommits(Object projectIdOrPath, Long mergeRequestIid, int page, int perPage) throws GitLabApiException {
353353
Form formData = new GitLabApiForm().withParam("owned", true).withParam(PAGE_PARAM, page).withParam(PER_PAGE_PARAM, perPage);
354354
Response response = get(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "merge_requests", mergeRequestIid, "commits");
355355
return (response.readEntity(new GenericType<List<Commit>>() {}));
@@ -368,7 +368,7 @@ public List<Commit> getCommits(Object projectIdOrPath, int mergeRequestIid, int
368368
* @return a Pager containing the commits for the specified merge request
369369
* @throws GitLabApiException GitLabApiException if any exception occurs during execution
370370
*/
371-
public Pager<Commit> getCommits(Object projectIdOrPath, int mergeRequestIid, int itemsPerPage) throws GitLabApiException {
371+
public Pager<Commit> getCommits(Object projectIdOrPath, Long mergeRequestIid, int itemsPerPage) throws GitLabApiException {
372372
return (new Pager<Commit>(this, Commit.class, itemsPerPage, null,
373373
"projects", getProjectIdOrPath(projectIdOrPath), "merge_requests", mergeRequestIid, "commits"));
374374
}
@@ -385,7 +385,7 @@ public Pager<Commit> getCommits(Object projectIdOrPath, int mergeRequestIid, int
385385
* @return a Stream containing the commits for the specified merge request
386386
* @throws GitLabApiException GitLabApiException if any exception occurs during execution
387387
*/
388-
public Stream<Commit> getCommitsStream(Object projectIdOrPath, int mergeRequestIid) throws GitLabApiException {
388+
public Stream<Commit> getCommitsStream(Object projectIdOrPath, Long mergeRequestIid) throws GitLabApiException {
389389
return (getCommits(projectIdOrPath, mergeRequestIid, getDefaultPerPage()).stream());
390390
}
391391

src/main/java/org/gitlab4j/api/models/MergeRequest.java

+9
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ public class MergeRequest {
1919
private Author author;
2020
private Boolean blockingDiscussionsResolved;
2121
private List<Diff> changes;
22+
private String changesCount;
2223
private Date closedAt;
2324
private Participant closedBy;
2425
private Date createdAt;
@@ -136,6 +137,14 @@ public void setChanges(List<Diff> changes) {
136137
this.changes = changes;
137138
}
138139

140+
public String getChangesCount() {
141+
return changesCount;
142+
}
143+
144+
public void setChangesCount(String changesCount) {
145+
this.changesCount = changesCount;
146+
}
147+
139148
public Date getClosedAt() {
140149
return closedAt;
141150
}

src/main/java/org/gitlab4j/api/models/Project.java

+14
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ public String toString() {
6464
private Namespace namespace;
6565
private String nameWithNamespace;
6666
private Boolean onlyAllowMergeIfPipelineSucceeds;
67+
private Boolean allowMergeOnSkippedPipeline;
6768
private Boolean onlyAllowMergeIfAllDiscussionsAreResolved;
6869
private Integer openIssuesCount;
6970
private Owner owner;
@@ -360,6 +361,19 @@ public Project withOnlyAllowMergeIfPipelineSucceeds(Boolean onlyAllowMergeIfPipe
360361
return (this);
361362
}
362363

364+
public Boolean getAllowMergeOnSkippedPipeline() {
365+
return allowMergeOnSkippedPipeline;
366+
}
367+
368+
public void setAllowMergeOnSkippedPipeline(Boolean allowMergeOnSkippedPipeline) {
369+
this.allowMergeOnSkippedPipeline = allowMergeOnSkippedPipeline;
370+
}
371+
372+
public Project withAllowMergeOnSkippedPipeline(Boolean allowMergeOnSkippedPipeline) {
373+
this.allowMergeOnSkippedPipeline = allowMergeOnSkippedPipeline;
374+
return (this);
375+
}
376+
363377
public Boolean getOnlyAllowMergeIfAllDiscussionsAreResolved() {
364378
return onlyAllowMergeIfAllDiscussionsAreResolved;
365379
}

0 commit comments

Comments
 (0)