diff --git a/cliff.toml b/cliff.toml deleted file mode 100644 index f31e1bd89ccb..000000000000 --- a/cliff.toml +++ /dev/null @@ -1,46 +0,0 @@ -# https://git-cliff.org/docs/configuration - -[changelog] -header = """ -# Changelog - -You can install any of these versions: `npm install -g @openai/codex@` -""" - -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 | striptags | trim }} - -{% for commit in commits %}- {% if commit.scope %}*({{ commit.scope }})* {% endif %}{% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | upper_first }} -{% endfor %} - -{%- endfor -%} -""" - -footer = """ - -""" - -trim = true -postprocessors = [] - -[git] -conventional_commits = true - -commit_parsers = [ - { message = "^feat", group = "🚀 Features" }, - { message = "^fix", group = "🪲 Bug Fixes" }, - { message = "^bump", group = "🛳️ Release" }, - # Fallback – skip anything that didn't match the above rules. - { message = ".*", group = "💼 Other" }, -] - -filter_unconventional = false -sort_commits = "oldest" -topo_order = false \ No newline at end of file