Skip to content

Commit 88d8cc3

Browse files
committed
chore(semantic-release): add config for semantic-release
1 parent 2e6d1be commit 88d8cc3

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

releaserc.toml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[semantic_release]
2+
commit_parser = "angular"
3+
4+
[semantic_release.changelog]
5+
exclude_commit_patterns = [
6+
'''chore(?:\([^)]*?\))?: .+''',
7+
'''ci(?:\([^)]*?\))?: .+''',
8+
'''refactor(?:\([^)]*?\))?: .+''',
9+
'''style(?:\([^)]*?\))?: .+''',
10+
'''test(?:\([^)]*?\))?: .+''',
11+
'''build\((?!deps\): .+)''',
12+
'''Merged? .*''',
13+
'''Initial Commit.*''',
14+
]
15+
16+
[semantic_release.branches.main]
17+
match = "(main|master)"
18+
prerelease = false
19+
20+
[semantic_release.remote]
21+
type = "github"
22+
token = { env = "GH_TOKEN" }
23+
24+
[semantic_release.publish]
25+
upload_to_vcs_release = false

0 commit comments

Comments
 (0)