-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathknope.toml
More file actions
73 lines (55 loc) · 1.52 KB
/
knope.toml
File metadata and controls
73 lines (55 loc) · 1.52 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[packages.go]
versioned_files = ["generated/packages/go/go.mod"]
changelog = "generated/packages/go/CHANGELOG.md"
scopes = ["go"]
[packages.py]
versioned_files = ["generated/packages/py/pyproject.toml"]
changelog = "generated/packages/py/CHANGELOG.md"
scopes = ["py"]
[packages.rs]
versioned_files = ["generated/packages/rs/Cargo.toml"]
changelog = "generated/packages/rs/CHANGELOG.md"
scopes = ["rs"]
[packages.ts]
versioned_files = ["generated/packages/ts/package.json"]
changelog = "generated/packages/ts/CHANGELOG.md"
scopes = ["ts"]
[[workflows]]
name = "prepare-release"
[[workflows.steps]]
type = "Command"
command = "git switch -c release"
[[workflows.steps]]
type = "PrepareRelease"
[[workflows.steps]]
type = "Command"
command = "git commit -m \"chore: prepare release\""
[[workflows.steps]]
type = "Command"
command = "git push --force --set-upstream origin release"
[[workflows.steps]]
type = "CreatePullRequest"
base = "main"
[workflows.steps.title]
template = "chore: prepare release"
variables = {}
[workflows.steps.body]
template = "Merging this PR will create a new release. See the diff for version bumps and changelogs."
variables = {}
[[workflows]]
name = "release"
[[workflows.steps]]
type = "Release"
[[workflows]]
name = "document-change"
[[workflows.steps]]
type = "CreateChangeFile"
[release_notes]
change_templates = [
"- $summary ([`$commit_hash`](https://github.com/zcstarr/spec-types/commit/$commit_hash))",
"### $summary\n\n$details",
"- $summary",
]
[github]
owner = "open-rpc"
repo = "spec-types"