2016-07-21 14:23:19 +00:00
|
|
|
---
|
2018-09-26 09:08:16 +00:00
|
|
|
|
|
|
|
# Disable GPG signing for tags in case you do not want to have signed
|
|
|
|
# tags or do not have set up GPG signing for git.
|
|
|
|
disable_signed_tags: false
|
|
|
|
|
|
|
|
# Filter out commits using a regular expression match on the commit
|
|
|
|
# message. By default below is a matcher for PR merges on Github.
|
|
|
|
ignore_messages:
|
|
|
|
- "^Merge pull request"
|
|
|
|
|
|
|
|
# Every commit message matching one of the regular expressions defined
|
|
|
|
# in here will cause a patch-version increase (1.0.0 -> 1.0.1).
|
2016-07-21 14:23:19 +00:00
|
|
|
match_patch:
|
2023-12-29 17:42:11 +00:00
|
|
|
- "\\[CI\\]"
|
2023-12-22 14:20:22 +00:00
|
|
|
- "[dD]ep:"
|
|
|
|
- "[fF]ix:"
|
|
|
|
- "[lL]int:"
|
|
|
|
- "[rR]efactor:"
|
2024-03-01 20:39:37 +00:00
|
|
|
- "Update dependencies"
|
2016-07-21 14:23:19 +00:00
|
|
|
|
2018-09-26 09:08:16 +00:00
|
|
|
# Every commit message matching one of the regular expressions defined
|
|
|
|
# in here will cause a major-version increase (1.0.0 -> 2.0.0).
|
2016-07-21 14:23:19 +00:00
|
|
|
match_major:
|
|
|
|
- "^[Bb]reaking"
|
2018-09-26 09:08:16 +00:00
|
|
|
|
|
|
|
# Template to format the commit message containing the changelog change
|
|
|
|
# which will be used to add the tag to.
|
|
|
|
release_commit_message: "prepare release {{.Version}}"
|
|
|
|
|
|
|
|
...
|