-
Notifications
You must be signed in to change notification settings - Fork 9
/
knope.toml
47 lines (36 loc) · 972 Bytes
/
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
[packages.quil-rs]
versioned_files = ["quil-rs/Cargo.toml"]
changelog = "quil-rs/CHANGELOG.md"
scopes = ["rs", "rust", "quil-rs"]
[packages.quil-py]
versioned_files = ["quil-py/Cargo.toml", "quil-py/pyproject.toml"]
changelog = "quil-py/CHANGELOG.md"
scopes = ["py", "python", "quil-py"]
[packages.quil-cli]
versioned_files = ["quil-cli/Cargo.toml"]
changelog = "quil-cli/CHANGELOG.md"
scopes = ["cli", "quil-cli"]
[[workflows]]
name = "release"
[[workflows.steps]]
type = "PrepareRelease"
[[workflows.steps]]
type = "Command"
command = "sh ./scripts/sync_versions.sh"
[[workflows.steps]]
type = "Command"
command = "git add quil-py/Cargo.toml"
[[workflows.steps]]
type = "Command"
command = "git add quil-cli/Cargo.toml"
[[workflows.steps]]
type = "Command"
command = "git commit -m \"chore: prepare release [skip ci]\""
[[workflows.steps]]
type = "Command"
command = "git push"
[[workflows.steps]]
type = "Release"
[github]
owner = "rigetti"
repo = "quil-rs"