forked from rigetti/pyquil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
knope.toml
40 lines (29 loc) · 801 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
[package]
versioned_files = ["pyproject.toml"]
changelog = "CHANGELOG.md"
[[workflows]]
name = "release"
[[workflows.steps]]
type = "PrepareRelease"
[[workflows.steps]]
type = "Command"
command = "git add pyproject.toml CHANGELOG.md && git commit -m \"chore: prepare release $version [skip ci]\" && git push"
[workflows.steps.variables]
"$version" = "Version"
[[workflows.steps]]
type = "Release"
[[workflows]]
name = "prerelease"
[[workflows.steps]]
type = "PrepareRelease"
prerelease_label = "rc"
[[workflows.steps]]
type = "Command"
command = "git add pyproject.toml CHANGELOG.md && git commit -m \"chore: prepare release $version [skip ci]\" && git push"
[workflows.steps.variables]
"$version" = "Version"
[[workflows.steps]]
type = "Release"
[github]
owner = "rigetti"
repo = "pyquil"