Skip to content

Commit

Permalink
fix: trim ignoreCommitsIfMessageMatches
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasbjerre committed Sep 24, 2023
1 parent 4cc20c7 commit fe7da3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ public void execute() throws MojoExecutionException {
}
builder.withRemoveIssueFromMessageArgument(this.removeIssueFromMessage);
if (this.isSupplied(this.ignoreCommitsIfMessageMatches)) {
builder.withIgnoreCommitsWithMessage(this.ignoreCommitsIfMessageMatches);
builder.withIgnoreCommitsWithMessage(this.ignoreCommitsIfMessageMatches.trim());
}
if (this.ignoreCommitsOlderThan != null) {
builder.withIgnoreCommitsOlderThan(this.ignoreCommitsOlderThan);
Expand Down

0 comments on commit fe7da3e

Please sign in to comment.