Skip to content

Commit 807ac78

Browse files
authored
chore: Add support for chore commits in release-please (#1046)
* chore: Add support for chore commits in release-please Include `chore` as a supported category for release-please. Chore commits refer to changes that don't modify source files but are necessary to maintain the project. Some examples include: - Updating build scripts or configuration files - Updating dependencies - Updating CI/CD configurations Consider using scopes in order to "narrow down" the context of the change. For example: - chore(ci): <change> - chore(build): <change> * Remove release commit type from release-please The other supported categories should account for any change that may require a release.
1 parent 599f0a6 commit 807ac78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/release-please/release-please-config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{ "type": "feat", "section": "Features" },
99
{ "type": "fix", "section": "Fixes" },
1010
{ "type": "docs", "section": "Documentation" },
11-
{ "type": "release", "section": "Release"}
11+
{ "type": "chore", "section": "Miscellaneous Chores" }
1212
]
1313
}
1414
},

0 commit comments

Comments
 (0)