-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcog.toml
More file actions
32 lines (30 loc) · 729 Bytes
/
cog.toml
File metadata and controls
32 lines (30 loc) · 729 Bytes
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
from_latest_tag = true
ignore_merge_commits = true
disable_changelog = false
generate_mono_repository_global_tag = true
branch_whitelist = []
skip_ci = "[skip ci]"
skip_untracked = false
pre_package_bump_hooks = []
post_package_bump_hooks = []
pre_bump_hooks = []
post_bump_hooks = [
"git push",
"git push --tags",
]
## required for go to get the latest version
tag_prefix = "v"
[changelog]
path = "CHANGELOG.md"
authors = []
template = "remote"
remote = "github.com"
repository = "hugo-theme-component-ical"
owner = "finkregh"
[commit_types]
chore = { bump_patch = true }
revert = { bump_minor = true }
docs = { bump_patch = true }
style = { bump_patch = true }
perf = { bump_patch = true }
ci = { bump_patch = true }