-
Notifications
You must be signed in to change notification settings - Fork 0
/
cog.toml
47 lines (42 loc) · 1.16 KB
/
cog.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from_latest_tag = true
ignore_merge_commits = true
disable_changelog = false
disable_bump_commit = false
generate_mono_repository_global_tag = true
skip_ci = "[skip ci]"
skip_untracked = false
pre_bump_hooks = [
"echo Bump {{version}}"
]
post_bump_hooks = [
"echo {{latest}} bumped to {{version}}"
]
pre_package_bump_hooks = []
post_package_bump_hooks = []
branch_whitelist = ["main"]
[git_hooks.commit-msg]
script = """#!/bin/sh
set -e
cog verify --file $1
cog check
"""
[commit_types]
chore = { changelog_title = "📦 Misc", omit_from_changelog = true }
feat = { changelog_title = "📦 Features" }
fix = { changelog_title = "🐞 Bug fixes" }
hotfix = { changelog_title = "🔥 Bug fixes" }
ci = { changelog_title = "🚀 Integrations & deployments" }
perf = { changelog_title = "🏎️ Performances", omit_from_changelog = true }
doc = { changelog_title = "📔 Documentations" }
style = { changelog_title = "👘 Styles", omit_from_changelog = true }
[changelog]
template = "remote"
path = "CHANGELOG.md"
remote = "github.com"
repository = "utils-scss"
owner = "ravorona"
authors = [
{ username = "ravorona", signature = "яαvoroηα" }
]
[bump_profiles]
[packages]