-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcliff.toml
More file actions
40 lines (36 loc) · 1.2 KB
/
cliff.toml
File metadata and controls
40 lines (36 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[changelog]
header = """
# Changelog
All notable changes to this project will be documented in this file.
"""
footer = """
---
**Full Changelog**: https://github.com/OHNLP/omop_mcp/compare/{previous_tag}...{new_version}
"""
trim = true
[git]
conventional_commits = true
filter_unconventional = false
split_commits = false
commit_parsers = [
{ message = "^feat", group = "Features" },
{ message = "^fix", group = "Bug Fixes" },
{ message = "^docs", group = "Documentation" },
{ message = "^style", group = "Styling" },
{ message = "^refactor", group = "Refactoring" },
{ message = "^perf", group = "Performance" },
{ message = "^test", group = "Testing" },
{ message = "^build", group = "Build System" },
{ message = "^ci", group = "CI" },
{ message = "^chore", group = "Miscellaneous" },
{ message = "^Merge pull request", group = "Merged Pull Requests" },
{ message = "^Merge branch", group = "Merged Pull Requests" },
]
skip_tags = []
ignore_tags = []
date_order = "oldest"
sort = "oldest"
link_parsers = [
{ pattern = "\(#(\d+)\)", href = "https://github.com/OHNLP/omop_mcp/pull/$1" },
{ pattern = "#(\d+)", href = "https://github.com/OHNLP/omop_mcp/issues/$1" },
]