about summary refs log tree commit diff stats
path: root/templates/c/cog.toml
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-03-31 16:29:47 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-03-31 23:59:52 +0200
commit392a8dd604e7f7cac385f51fe083a78c8a7f9904 (patch)
tree60b0c41c0e0b535a593f86fccad22c69ff58991f /templates/c/cog.toml
parentchore(version): v0.2.0 (diff)
downloadflake-templates-392a8dd604e7f7cac385f51fe083a78c8a7f9904.tar.gz
flake-templates-392a8dd604e7f7cac385f51fe083a78c8a7f9904.zip
feat(c): Update to be in line with the my SOTA
Diffstat (limited to 'templates/c/cog.toml')
-rw-r--r--templates/c/cog.toml25
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/c/cog.toml b/templates/c/cog.toml
new file mode 100644
index 0000000..d34ced6
--- /dev/null
+++ b/templates/c/cog.toml
@@ -0,0 +1,25 @@
+tag_prefix = "v"
+branch_whitelist = ["main", "prime"]
+ignore_merge_commits = false
+
+[commit_types]
+
+pre_bump_hooks = [
+  "nix flake check",                # verify the project builds
+  "./scripts/renew_copyright_header.sh", # update the license header in each file
+  "nix fmt",                        # format
+]
+post_bump_hooks = [
+  "git push",
+  "git push origin v{{version}}", # push the new tag to origin
+]
+
+[bump_profiles]
+
+[changelog]
+path = "NEWS.md"
+template = "remote"
+remote = "TODO"
+repository = "TODO"
+owner = "TODO"
+authors = [{ signature = "Benedikt Peetz", username = "bpeetz" }]