-
Notifications
You must be signed in to change notification settings - Fork 0
/
knope.toml
70 lines (55 loc) · 1.63 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[packages.codestyle]
versioned_files = ["packages/codestyle/package.json"]
changelog = "packages/codestyle/CHANGELOG.md"
scopes = ["codestyle"]
[packages.components]
versioned_files = ["packages/components/package.json"]
changelog = "packages/components/CHANGELOG.md"
scopes = ["components"]
[packages.a11y]
versioned_files = ["packages/a11y/package.json"]
changelog = "packages/a11y/CHANGELOG.md"
scopes = ["a11y"]
[packages.elements]
versioned_files = ["packages/elements/package.json"]
changelog = "packages/elements/CHANGELOG.md"
scopes = ["elements"]
[packages.html-to-custom-tag-replacement]
versioned_files = ["packages/html-to-custom-tag-replacement/package.json"]
changelog = "packages/html-to-custom-tag-replacement/CHANGELOG.md"
scopes = ["htctr"]
[packages.scroll-lock]
versioned_files = ["packages/scroll-lock/package.json"]
changelog = "packages/scroll-lock/CHANGELOG.md"
scopes = ["scroll-lock"]
[packages.slider]
versioned_files = ["packages/slider/package.json"]
changelog = "packages/slider/CHANGELOG.md"
scopes = ["slider"]
[[workflows]]
name = "release"
[[workflows.steps]]
type = "PrepareRelease"
allow_empty = true
[[workflows.steps]]
type = "Command"
command = "git add --all"
shell = true
[[workflows.steps]]
type = "Command"
command = "git commit -m \"chore: prepare releases\" || true"
shell = true
[[workflows.steps]]
type = "Release"
[[workflows.steps]]
type = "Command"
command = "bun x turbo run publish-package"
shell = true
[[workflows.steps]]
type = "Command"
command = "git push origin -o ci.skip && git push --tags"
shell = true
[[workflows]]
name = "document-change"
[[workflows.steps]]
type = "CreateChangeFile"