xref: /plugin/pagecss/.git-cliff.toml (revision 357fce0e0c0bebbc0674413150eff756b6cb8ecb)
1[changelog]
2header = "# Changelog\n\n"
3body = """
4{% for group, commits in commits | group_by(attribute="group") %}
5### {{ group | upper_first }}
6{% for commit in commits %}
7- {{ commit.message | upper_first }} ([`{{ commit.id | truncate(7) }}`]({{ commit.remote }}{{ commit.id }}))
8{% endfor %}
9{% endfor %}
10"""
11footer = "\n_This changelog was automatically generated._"
12trim = true
13tag_pattern = "v[0-9]*"
14
15[git]
16conventional = true
17