-
Notifications
You must be signed in to change notification settings - Fork 5
/
knope.toml
52 lines (39 loc) · 1.03 KB
/
knope.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
48
49
50
51
52
[packages.lib]
versioned_files = ["crates/lib/Cargo.toml"]
changelog = "crates/lib/CHANGELOG.md"
scopes = ["lib", "rust"]
[packages.python]
versioned_files = ["crates/python/Cargo.toml", "crates/python/pyproject.toml"]
changelog = "crates/python/CHANGELOG.md"
scopes = ["python"]
[[workflows]]
name = "release"
[[workflows.steps]]
type = "PrepareRelease"
[[workflows.steps]]
type = "Command"
command = "cargo update -w"
[[workflows.steps]]
type = "Command"
command = "git add Cargo.lock && git commit -m \"chore: prepare new release(s) [skip ci]\""
[[workflows.steps]]
type = "Command"
command = "git push"
[[workflows.steps]]
type = "Release"
[[workflows]]
name = "prerelease"
[[workflows.steps]]
type = "PrepareRelease"
prerelease_label = "rc"
[[workflows.steps]]
type = "Command"
command = "cargo update -w && git add Cargo.lock && git commit -m \"chore: prepare new prerelease(s) [skip ci]\""
[[workflows.steps]]
type = "Command"
command = "git push"
[[workflows.steps]]
type = "Release"
[github]
owner = "rigetti"
repo = "qcs-sdk-rust"