-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcog.toml
34 lines (29 loc) · 873 Bytes
/
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
ignore_merge_commits = true
branch_whitelist = ["main"]
pre_bump_hooks = []
post_bump_hooks = ["git push", "git push origin --tags"]
[commit_types]
[changelog]
path = "CHANGELOG.md"
template = "remote"
remote = "github.com"
repository = "binge_at_home"
owner = "szattila98"
authors = [
{ username = "szattila98", signature = "Attila Szőke" },
{ username = "doleance", signature = "doleance" },
{ username = "CsalaPeter", signature = "Péter Csala" }
]
[bump_profiles]
[packages]
client = { path = "client", pre_bump_hooks = [
"npm ci",
"npm version {{version}}",
] }
server = { path = "server", pre_bump_hooks = ["cargo set-version -p binge-at-home {{version}}"] }
macros = { path = "server/macros", pre_bump_hooks = ["cargo set-version -p macros {{version}}"], public_api = false }
[git_hooks.pre-push]
script = """#!/bin/sh
set -e
cog check
"""