mcp-git-ingest

# Configuration file for git-cliff (https://github.com/orhun/git-cliff) # Customize this file based on your project's needs [changelog] # changelog header header = """ # Changelog All notable changes to this project will be documented in this file. """ # template for the changelog body body = """ {% if version %}\ ## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }} {% else %}\ ## [unreleased] {% endif %}\ {% for group, commits in commits | group_by(attribute="group") %} ### {{ group | upper_first }} {%- for commit in commits %} - {{ commit.message | upper_first }} {%- endfor %} {% endfor %}\n """ # remove the leading and trailing whitespaces from the template trim = true # changelog footer footer = """ <!-- generated by git-cliff --> """ [git] # parse the commits based on https://www.conventionalcommits.org conventional_commits = true # filter out the commits that are not conventional filter_unconventional = true # regex for parsing and grouping commits commit_parsers = [ { message = "^feat", group = "Features" }, { message = "^fix", group = "Bug Fixes" }, { message = "^doc", group = "Documentation" }, { message = "^perf", group = "Performance" }, { message = "^refactor", group = "Refactor" }, { message = "^style", group = "Styling" }, { message = "^test", group = "Testing" }, { message = "^chore\\(release\\): prepare for", skip = true }, { message = "^chore", group = "Miscellaneous Tasks" }, { body = ".*security", group = "Security" }, ] # sort the tags topologically topo_order = true # sort the commits inside sections by oldest/newest order sort_commits = "newest"