From 3094a6bef6aa83fd0321caec58ce402ae7609899 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sun, 31 Mar 2024 17:04:59 +0200 Subject: feat(awk): Update to my current SOTA --- templates/awk/cog.toml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 templates/awk/cog.toml (limited to 'templates/awk/cog.toml') 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" }] -- cgit 1.4.1