about summary refs log tree commit diff stats
path: root/templates/awk/cog.toml
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-03-31 17:04:59 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-03-31 23:59:54 +0200
commit3094a6bef6aa83fd0321caec58ce402ae7609899 (patch)
tree34e23af608a5877cd3275a842c392c68017483d2 /templates/awk/cog.toml
parentfeat(c): Update to be in line with the my SOTA (diff)
downloadflake-templates-3094a6bef6aa83fd0321caec58ce402ae7609899.tar.gz
flake-templates-3094a6bef6aa83fd0321caec58ce402ae7609899.zip
feat(awk): Update to my current SOTA
Diffstat (limited to 'templates/awk/cog.toml')
-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" }]