Skip to content

Commit

Permalink
Add Javadocs on 'newTagRevision' property
Browse files Browse the repository at this point in the history
  • Loading branch information
shestee committed Dec 21, 2020
1 parent 93a7704 commit 64ef115
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/org/shipkit/gh/release/GitHubReleaseTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,19 @@ public void setWriteToken(String writeToken) {
this.writeToken = writeToken;
}

/**
* See {@link #setNewTagRevision(String)}
*/
@Input
public String getNewTagRevision() {
return newTagRevision;
}

/**
* Property required to specify revision for the new tag.
* The property's value is passed to GitHub API's
* 'target_commitish' parameter in {@link #postRelease()} method.
*/
public void setNewTagRevision(String newTagRevision) {
this.newTagRevision = newTagRevision;
}
Expand Down

0 comments on commit 64ef115

Please sign in to comment.