-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcog.toml
More file actions
39 lines (34 loc) · 1.36 KB
/
cog.toml
File metadata and controls
39 lines (34 loc) · 1.36 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
from_latest_tag = true
ignore_merge_commits = true
ignore_fixup_commits = true
disable_changelog = false
disable_bump_commit = false
generate_mono_repository_global_tag = false
generate_mono_repository_package_tags = false
branch_whitelist = ["main"]
skip_ci = "[skip ci]"
skip_untracked = false
pre_bump_hooks = ["cargo test -p just-mcp-lib", "cargo check --all-targets --all-features"]
post_bump_hooks = ["cargo update", "git add Cargo.lock", "./scripts/update-server-json-version.sh"]
pre_package_bump_hooks = []
post_package_bump_hooks = []
tag_prefix = "v"
[git_hooks]
[commit_types]
feat = { changelog_title = "Features", bump = "minor" }
fix = { changelog_title = "Bug Fixes", bump = "patch" }
docs = { changelog_title = "Documentation", bump = "patch" }
style = { changelog_title = "Styling", bump = "patch" }
refactor = { changelog_title = "Refactoring", bump = "patch" }
perf = { changelog_title = "Performance", bump = "patch" }
test = { changelog_title = "Testing", bump = "patch" }
chore = { changelog_title = "Miscellaneous", bump = "patch" }
ci = { changelog_title = "Continuous Integration", bump = "patch" }
build = { changelog_title = "Build System", bump = "patch" }
revert = { changelog_title = "Reverts", bump = "patch" }
breaking = { changelog_title = "Breaking Changes", bump = "major" }
[changelog]
path = "CHANGELOG.md"
authors = []
[bump_profiles]
[packages]