-
Notifications
You must be signed in to change notification settings - Fork 2
/
cog.toml
26 lines (22 loc) · 862 Bytes
/
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
# Optional github repository url, used mainly to generate changelog links
github = "https://github.com/keelerm84/heimdallr"
# Optional changelog path ("CHANGELOG.md" if omitted)
changelog_path = "docs/CHANGELOG.md"
# A list of command to run BEFORE creating a version.
# All change generated by those commands will be committed with the generated version commit.
# `{{version}}` will be interpreted as your target version
pre_bump_hooks = [
"cargo test",
"cargo clippy",
"cargo build --release",
"cargo bump {{version}}"
]
# A list of command to run AFTER creating a version.
# `{{version}}` will be interpreted as your target version
post_bump_hooks = [
"git push",
"git push origin {{version}}"
]
# An optional list of additional allowed commit type
# `coco {commit_type}` commit command will be generated at runtime
[commit_types]