40 lines
637 B
TOML
40 lines
637 B
TOML
from_latest_tag = false
|
|
ignore_merge_commits = false
|
|
disable_changelog = false
|
|
disable_bump_commit = false
|
|
generate_mono_repository_global_tag = true
|
|
branch_whitelist = []
|
|
skip_ci = "[skip ci]"
|
|
skip_untracked = false
|
|
pre_bump_hooks = []
|
|
post_bump_hooks = []
|
|
pre_package_bump_hooks = []
|
|
post_package_bump_hooks = []
|
|
|
|
[git_hooks]
|
|
|
|
[git_hooks.commit-msg]
|
|
script = """#!/bin/sh
|
|
set -e
|
|
cog verify --file $1
|
|
|
|
"""
|
|
|
|
[git_hooks.pre-commit]
|
|
script = """#!/bin/sh
|
|
set -e
|
|
git add .
|
|
gitleaks git -v
|
|
gitleaks git --pre-commit --redact --staged --verbose
|
|
"""
|
|
|
|
[commit_types]
|
|
|
|
[changelog]
|
|
path = "CHANGELOG.md"
|
|
authors = []
|
|
|
|
[bump_profiles]
|
|
|
|
[packages]
|