-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
cog.toml
33 lines (28 loc) · 798 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
branch_whitelist = [ "main" ]
ignore_merge_commits = true
pre_bump_hooks = [
"cargo set-version {{version}}",
"cargo nextest run --test-threads=1",
"cargo clippy",
"cargo build --release",
"cargo fmt --all",
"docker build -t bombadil-tests ./",
"docker run -t bombadil-tests ",
]
post_bump_hooks = [
"git push",
"git push origin {{version}}",
"cargo package",
"cargo publish"
]
[changelog]
template = "remote"
remote = "github.com"
repository = "toml-bombadil"
owner = "oknozor"
authors = [
{ signature = "Paul Delafosse", username = "oknozor" },
{ signature = "Dustin Speckhals", username = "DSpeckhals" },
{ signature = "Lucas Declercq", username = "lucas-dclrcq" },
{ signature = "Travis Davis", username = "travisdavis-ops" },
]