Skip to content

Commit

Permalink
WIP: Add getter to patch GitLabPushTrigger.java (#1450)
Browse files Browse the repository at this point in the history
* Add getter to patch GitLabPushTrigger.java

* Add more getters for the patch
  • Loading branch information
krisstern committed Apr 16, 2023
1 parent 6dcbc5a commit 9db992a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/main/java/com/dabsquared/gitlabjenkins/GitLabPushTrigger.java
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,30 @@ public void setAcceptMergeRequestOnSuccess(boolean acceptMergeRequestOnSuccess)
this.acceptMergeRequestOnSuccess = acceptMergeRequestOnSuccess;
}

public boolean getAcceptMergeRequestOnSuccess() {
return this.acceptMergeRequestOnSuccess;
}

public boolean getAddCiMessage() {
return this.addCiMessage;
}

public boolean getAddNoteOnMergeRequest() {
return this.addNoteOnMergeRequest;
}

public boolean getAddVoteOnMergeRequest() {
return this.addVoteOnMergeRequest;
}

public boolean getSkipWorkInProgressMergeRequest() {
return this.skipWorkInProgressMergeRequest;
}

public String getBranchFilterName() {
return this.branchFilterName;
}

@DataBoundSetter
public void setTriggerOnPipelineEvent(boolean triggerOnPipelineEvent) {
this.triggerOnPipelineEvent = triggerOnPipelineEvent;
Expand Down

0 comments on commit 9db992a

Please sign in to comment.