Skip to content

Commit 68d5168

Browse files
authored
fix: add semantic release config (#4)
This should be a `ci:` commit but I’m forcing a patch version release because it hasn’t published via semantic version yet.
1 parent bac93dc commit 68d5168

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

.github/semantic.yml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Always validate the PR title, and ignore the commits
2+
titleOnly: true
3+
4+
# Always validate all commits, and ignore the PR title
5+
# commitsOnly: true
6+
7+
# Always validate the PR title AND all the commits
8+
# titleAndCommits: true
9+
10+
# Require at least one commit to be valid
11+
# this is only relevant when using commitsOnly: true or titleAndCommits: true,
12+
# which validate all commits by default
13+
# anyCommit: true
14+
15+
# You can define a list of valid scopes
16+
# scopes:
17+
# - scope1
18+
# - scope2
19+
# ...
20+
21+
# By default types specified in commitizen/conventional-commit-types is used.
22+
# See: https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json
23+
# You can override the valid types
24+
# types:
25+
# - feat
26+
# - fix
27+
# - docs
28+
# - style
29+
# - refactor
30+
# - perf
31+
# - test
32+
# - build
33+
# - ci
34+
# - chore
35+
# - revert
36+
37+
# Allow use of Merge commits (eg on github: "Merge branch 'master' into feature/ride-unicorns")
38+
# this is only relevant when using commitsOnly: true (or titleAndCommits: true)
39+
# allowMergeCommits: true
40+
41+
# Allow use of Revert commits (eg on github: "Revert "feat: ride unicorns"")
42+
# this is only relevant when using commitsOnly: true (or titleAndCommits: true)
43+
# allowRevertCommits: true
44+

0 commit comments

Comments
 (0)