Skip to content

Commit

Permalink
type: [docs], message: Add warn to the end of the commit lint function.
Browse files Browse the repository at this point in the history
  • Loading branch information
esequielvirtuoso committed Feb 28, 2024
1 parent ed3761a commit b4ac813
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/semantic/semantic.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,8 @@ func (s *Semantic) CommitLint() error {
return errors.New("commit messages dos not meet semantic-release pattern")
}

s.log.Info(colorRed + "Remember to adapt the " + colorBGRed + "MERGE REQUEST TITLE" + colorRed + " or the " + colorBGRed + "MERGE COMMIT MESSAGE" + colorRed + " to semantic-release standards so it can properlly generate the new tag release." + colorReset)

return nil
}

Expand Down

0 comments on commit b4ac813

Please sign in to comment.