-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcog.toml
More file actions
48 lines (39 loc) · 1.62 KB
/
Copy pathcog.toml
File metadata and controls
48 lines (39 loc) · 1.62 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
40
41
42
43
44
45
46
47
48
#:schema https://docs.cocogitto.io/cog-schema.json
# Only allow version bumps on these branches
branch_whitelist = ["main"]
# Ignore merge commits generated by GitHub PR checks
ignore_merge_commits = true
# Tag prefix for semantic versioning
tag_prefix = "v"
# Do not create bump commits — tag only
disable_bump_commit = true
# Do not update CHANGELOG.md on bump — changelog is generated
# at release time and included in the GitHub Release body
disable_changelog = true
# Git hooks are managed by pre-commit (see .pre-commit-config.yaml)
# Install with: pre-commit install
# Custom commit types
[commit_types]
feat = { changelog_title = "Features", bump_minor = true, order = 0 }
fix = { changelog_title = "Bug Fixes", bump_patch = true, order = 1 }
perf = { changelog_title = "Performance Improvements", bump_patch = true, order = 2 }
refactor = { changelog_title = "Refactoring", order = 3 }
docs = { changelog_title = "Documentation", omit_from_changelog = false, order = 4 }
style = { omit_from_changelog = true }
test = { omit_from_changelog = true }
chore = { omit_from_changelog = true }
build = { changelog_title = "Build System", order = 5 }
ci = { omit_from_changelog = true }
revert = { changelog_title = "Reverts", order = 6 }
# Changelog template (used by `cog changelog` for release notes)
# TODO: Update repository and owner to match your GitHub repo
[changelog]
template = "remote"
remote = "github.com"
repository = "my-project"
owner = "my-org"
# Map git signatures to GitHub usernames
# TODO: Update with your git signature and GitHub username
authors = [
# { signature = "Your Name", username = "your-github-username" },
]