-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknope.toml
More file actions
82 lines (62 loc) · 1.62 KB
/
knope.toml
File metadata and controls
82 lines (62 loc) · 1.62 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
73
74
75
76
77
78
79
80
81
82
[changes]
ignore_conventional_commits = true
[packages.verily_app]
versioned_files = ["verily_app/pubspec.yaml"]
changelog = "verily_app/CHANGELOG.md"
scopes = ["app"]
[packages.verily_server]
versioned_files = ["verily_server/pubspec.yaml"]
changelog = "verily_server/CHANGELOG.md"
scopes = ["server"]
[packages.verily_client]
versioned_files = ["verily_client/pubspec.yaml"]
changelog = "verily_client/CHANGELOG.md"
scopes = ["client"]
[packages.verily_core]
versioned_files = ["verily_core/pubspec.yaml"]
changelog = "verily_core/CHANGELOG.md"
scopes = ["core"]
[packages.verily_ui]
versioned_files = ["verily_ui/pubspec.yaml"]
changelog = "verily_ui/CHANGELOG.md"
scopes = ["ui"]
[packages.verily_lints]
versioned_files = ["verily_lints/pubspec.yaml"]
changelog = "verily_lints/CHANGELOG.md"
scopes = ["lints"]
[packages.verily_test_utils]
versioned_files = ["verily_test_utils/pubspec.yaml"]
changelog = "verily_test_utils/CHANGELOG.md"
scopes = ["test_utils"]
[[workflows]]
name = "release"
[[workflows.steps]]
type = "PrepareRelease"
[[workflows.steps]]
type = "Command"
command = "dprint fmt"
[[workflows.steps]]
type = "Command"
command = "git add --all"
[[workflows.steps]]
type = "Command"
command = 'git commit -m "chore: prepare releases"'
[[workflows.steps]]
type = "Command"
command = "git push"
[[workflows.steps]]
type = "Release"
[[workflows]]
name = "document-change"
[[workflows.steps]]
type = "CreateChangeFile"
[[workflows.steps]]
type = "Command"
command = "dprint fmt .changeset/* --allow-no-files"
[[workflows]]
name = "forced-release"
[[workflows.steps]]
type = "Release"
[github]
owner = "kickjump"
repo = "verily"