From 807ac78238953512d5808a55496098eb4f3c20f8 Mon Sep 17 00:00:00 2001 From: ka3de Date: Mon, 18 Nov 2024 08:04:14 +0100 Subject: [PATCH] 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): - chore(build): * Remove release commit type from release-please The other supported categories should account for any change that may require a release. --- .github/release-please/release-please-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/release-please/release-please-config.json b/.github/release-please/release-please-config.json index 96a22b84e..119346665 100644 --- a/.github/release-please/release-please-config.json +++ b/.github/release-please/release-please-config.json @@ -8,7 +8,7 @@ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Fixes" }, { "type": "docs", "section": "Documentation" }, - { "type": "release", "section": "Release"} + { "type": "chore", "section": "Miscellaneous Chores" } ] } },