forked from SableClient/Sable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknope.toml
More file actions
53 lines (40 loc) · 1.07 KB
/
knope.toml
File metadata and controls
53 lines (40 loc) · 1.07 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
[packages.sable]
versioned_files = ["package.json", "package-lock.json"]
changelog = "CHANGELOG.md"
extra_changelog_sections = [
{ name = "Documentation", types = ["docs"] },
{ name = "Notes", types = ["note"] },
]
# assets = "marker for GitHub bot" // TODO: add this later once we have assets
[changes]
ignore_conventional_commits = true
[[workflows]]
name = "release"
help_text = "Prepare and create a new release (update changelog, bump version, create release)"
[[workflows.steps]]
type = "PrepareRelease"
[[workflows.steps]]
type = "Command"
command = 'git commit -m "chore: prepare release $version"'
[[workflows.steps]]
type = "Command"
command = "git push"
[[workflows.steps]]
type = "Release"
[[workflows]]
name = "document-change"
help_text = "Create a new change file to be included in the next release"
[[workflows.steps]]
type = "CreateChangeFile"
[github]
owner = "SableClient"
repo = "Sable"
[bot.releases]
enabled = true
#pull_request.title = "$version changelog"
[bot.checks]
skip_labels = ["internal"]
[release_notes]
change_templates = [
"* $summary",
]