Skip to content

Commit

Permalink
chore: Add support for chore commits in release-please (#1046)
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
ka3de authored Nov 18, 2024
1 parent 599f0a6 commit 807ac78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/release-please/release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
]
}
},
Expand Down

0 comments on commit 807ac78

Please sign in to comment.