[remote.github]
owner = "Vaishnav-Sabari-Girish"
repo = "ComChan"
[changelog]
body = """
{% if version %}
## {{ version }} - {{ timestamp | date(format="%Y-%m-%d") }}
{% else %}
## Unreleased
{% endif %}
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | striptags | trim | upper_first }}
{% for commit in commits %}
- {% if commit.scope %}**({{ commit.scope }})** {% endif %}{{ commit.message | upper_first | trim }}
{% endfor %}
{% endfor %}
"""
trim = true
footer = """
<!-- ComChan -->
"""
postprocessors = []
[git]
conventional_commits = true
filter_unconventional = true
split_commits = false
commit_parsers = [
{ message = "^feat", group = "<!-- 0 -->:rocket: New features" },
{ message = "^fix", group = "<!-- 1 -->:bug: Bug fixes" },
{ message = "^perf", group = "<!-- 3 -->:zap: Performance" },
{ message = "^refactor", group = "<!-- 5 -->:recycle: Refactoring" },
{ message = "^style", group = "<!-- 6 -->:art: Styling" },
{ message = "^build", group = "<!-- 9 -->:hammer: Build" },
{ message = ".*", skip = true },
]
commit_preprocessors = [{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "" }]
filter_commits = true
topo_order = false
sort_commits = "newest"