about summary refs log tree commit diff stats
path: root/templates/awk/cog.toml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--templates/awk/cog.toml26
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/awk/cog.toml b/templates/awk/cog.toml
new file mode 100644
index 0000000..677e20a
--- /dev/null
+++ b/templates/awk/cog.toml
@@ -0,0 +1,26 @@
+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
+  "flake_version_update --version v{{version}} --input-file flake.nix",
+]
+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" }]