Last active
September 12, 2024 14:24
-
-
Save bradobro/44f0919652642ea92bde6270b3b602ab to your computer and use it in GitHub Desktop.
Cocogitto Configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Cocogitto Configuration | |
# for Conventional Commits and Changelog Generation. | |
# See https://github.com/cocogitto/cocogitto | |
# `cog --version` -> "cog 6.1.0" | |
# try `curl https://gist.githubusercontent.com/bradobro/44f0919652642ea92bde6270b3b602ab/raw/cog.toml > cog.toml` | |
branch_whitelist = [] | |
disable_bump_commit = false | |
disable_changelog = false | |
from_latest_tag = false | |
generate_mono_repository_global_tag = true | |
ignore_merge_commits = true | |
post_bump_hooks = [] | |
post_package_bump_hooks = [] | |
pre_bump_hooks = [] | |
pre_package_bump_hooks = [] | |
skip_ci = "[skip ci]" | |
skip_untracked = false | |
tag_prefix = "v" | |
# install with `cog install-hook -a -o` | |
[git_hooks.commit-msg] | |
script = """#!/bin/sh | |
set -e | |
cog verify --file $1 | |
cog check | |
""" | |
[commit_types] | |
begin = { changelog_title = "Work Begun", omit_from_changelog = true } | |
wip = { changelog_title = "Work in Process", omit_from_changelog = true } | |
[changelog] | |
path = "CHANGELOG.md" | |
authors = [ | |
{ signature = "[email protected]", username = "bradobro" } | |
] | |
[bump_profiles] | |
[packages] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment