Skip to content

Commit eed52c7

Browse files
authored
fix(ci): allow chore commits for changesets (#29)
Fixes the release workflow - changesets needs to create `chore:` commits but commitlint was blocking them. Adds `chore` to allowed commit types in commitlint config. Related to #28
1 parent a55d787 commit eed52c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commitlint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports = {
1515
"subject-full-stop": [2, "never", "."],
1616
"type-case": [2, "always", "lower-case"],
1717
"type-empty": [2, "never"],
18-
"type-enum": [2, "always", ["feat", "bug", "maint"]],
18+
"type-enum": [2, "always", ["feat", "bug", "maint", "chore"]],
1919
"scope-case": [2, "always", "lower-case"],
2020
"scope-enum": [
2121
2,

0 commit comments

Comments
 (0)