Skip to content

Commit

Permalink
fix: add a space after skip ci
Browse files Browse the repository at this point in the history
  • Loading branch information
HRemonen committed Sep 9, 2023
1 parent d045b44 commit 2471da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/commit/commit.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func createCommitMessage(commitInfo Info) string {
var commitMessage string

if commitInfo.CommitType == "docs" {
commitMessage = "[skip ci]" + commitInfo.CommitType
commitMessage = "[skip ci] " + commitInfo.CommitType
} else {
commitMessage = commitInfo.CommitType
}
Expand Down

0 comments on commit 2471da0

Please sign in to comment.