-
Notifications
You must be signed in to change notification settings - Fork 17
/
cog.toml
29 lines (27 loc) · 1.16 KB
/
cog.toml
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
branch_whitelist = [ "main", "release/**" ]
pre_bump_hooks = [
"cargo build --release",
"echo 'bumping from {{latest}} to {{version}}'",
"cargo bump {{version}}",
]
[commit_types]
chore = { changelog_title = "Chores", omit_from_changelog = false }
feat = { changelog_title = "Features", omit_from_changelog = false }
fix = { changelog_title = "Bug Fixes", omit_from_changelog = false }
perf = { changelog_title = "Performance Improvements", omit_from_changelog = false }
refactor = { changelog_title = "Code Refactoring", omit_from_changelog = false }
revert = { changelog_title = "Reverts", omit_from_changelog = false }
style = { changelog_title = "Styles", omit_from_changelog = false }
test = { changelog_title = "Tests", omit_from_changelog = false }
ci = { changelog_title = "Continuous Integration", omit_from_changelog = false }
build = { changelog_title = "Build System", omit_from_changelog = false }
docs = { changelog_title = "Documentation", omit_from_changelog = false }
[changelog]
path = "CHANGELOG.md"
template = "remote"
remote = "github.com"
repository = "rasusa"
owner = "mbhall88"
authors = [
{ signature = "Michael Hall", username = "mbhall88" },
]