diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-03 13:07:12 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-03 13:07:12 +0200 |
commit | 629bb898769c8580db340078a8296fe551035a79 (patch) | |
tree | 9657f7bfba3f82c1edddcc3e2e517f214d6e4254 /templates/latex/academia/cog.toml | |
parent | docs(README): Specify the formatting language (diff) | |
download | flake-templates-629bb898769c8580db340078a8296fe551035a79.tar.gz flake-templates-629bb898769c8580db340078a8296fe551035a79.zip |
refactor(templates/latex): Declare as an academia template
Diffstat (limited to 'templates/latex/academia/cog.toml')
-rw-r--r-- | templates/latex/academia/cog.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/latex/academia/cog.toml b/templates/latex/academia/cog.toml new file mode 100644 index 0000000..ccca764 --- /dev/null +++ b/templates/latex/academia/cog.toml @@ -0,0 +1,24 @@ +tag_prefix = "v" +branch_whitelist = ["main", "prime"] +ignore_merge_commits = false + +pre_bump_hooks = [ + "nix flake check", # verify the project builds + "./scripts/renew_copyright_header.sh", # update the license header in each file + "flake_version_update --version v{{version}} --input-file flake.nix", # update the version in the flake.nix 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 = "%INIT_REMOTE" +repository = "%INIT_REPOSITORY" +owner = "%INIT_OWNER" +authors = [{ signature = "%INIT_AUTHOR_NAME", username = "%INIT_OWNER" }] |