ipc/cog.toml

29 lines
628 B
TOML
Raw Normal View History

2023-12-26 11:00:08 +00:00
tag_prefix = "v"
branch_whitelist = [ "main" ]
ignore_merge_commits = false
[commit_types]
pre_bump_hooks = [
"licensur -p -i" # update the license header in each file
"nix build", # verify the project builds
"cargo fmt --all" # format
"cargo set-version {{version}}", # bump version in Cargo.toml
]
post_bump_hooks = [
"git push",
"cargo publish",
"git push origin v{{version}}", # push the new tag to origin
]
[bump_profiles]
[changelog]
path = "NEWS.md"
remote = "git.nerdcult.net"
repository = "rpc"
owner = "trinitrix"
authors = [
{ signature = "Soispha", username = "soispha" },
]