diff --git a/cliff.toml b/cliff.toml index b5b8c3f16..9a4174c1b 100644 --- a/cliff.toml +++ b/cliff.toml @@ -14,15 +14,15 @@ body = """ {%- if version %} in {{ version }}{%- endif -%} {% for commit in commits %} - {% if commit.github.pr_title -%} - {%- set commit_message = commit.github.pr_title -%} + {% if commit.remote.pr_title -%} + {%- set commit_message = commit.remote.pr_title -%} {%- else -%} {%- set commit_message = commit.message -%} {%- endif -%} * {{ commit_message | split(pat="\n") | first | trim }}\ - {% if commit.github.username %} by @{{ commit.github.username }}{%- endif -%} - {% if commit.github.pr_number %} in \ - [#{{ commit.github.pr_number }}]({{ self::remote_url() }}/pull/{{ commit.github.pr_number }}) \ + {% if commit.remote.username %} by @{{ commit.remote.username }}{%- endif -%} + {% if commit.remote.pr_number %} in \ + [#{{ commit.remote.pr_number }}]({{ self::remote_url() }}/pull/{{ commit.remote.pr_number }}) \ {%- endif %} {%- endfor -%} @@ -53,7 +53,7 @@ body = """ """ # remove the leading and trailing whitespace from the template trim = true -# changelog footer +# template for the changelog footer footer = """ """ @@ -72,17 +72,12 @@ commit_preprocessors = [ # remove issue numbers from commits { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "" }, ] -commit_parsers = [{ field = "author.name", pattern = "renovate", skip = true }] -# protect breaking changes from being skipped due to matching a skipping commit_parser -protect_breaking_commits = false +commit_parsers = [ + { field = "author.name", pattern = "renovate", skip = true }, + { field = "message", pattern = "Upping version", skip = true }, +] # filter out the commits that are not matched by commit parsers filter_commits = false -# regex for matching git tags -tag_pattern = "[0-9].*" -# regex for skipping tags -skip_tags = "beta|alpha" -# regex for ignoring tags -ignore_tags = "rc" # sort the tags topologically topo_order = false # sort the commits inside sections by oldest/newest order