Skip to content

Commit

Permalink
feat: extend release please changelog types to include chore (#2502) (#…
Browse files Browse the repository at this point in the history
…2503)

feat: extend release please changelog types to include chore and others (#2502)
  • Loading branch information
NoopDog authored Nov 5, 2024
1 parent f797a41 commit ef9afc2
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ jobs:
token: ${{ secrets.HCA_RELEASE_PLEASE_TOKEN }}
# This is a built-in strategy in release-please, see "Action Inputs" for more options
release-type: node
config-file: release-please-config.json
45 changes: 45 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"release-type": "node",
"changelog-sections": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Chores"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"section": "Styles"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "test",
"section": "Tests"
},
{
"type": "build",
"section": "Build System"
},
{
"type": "ci",
"section": "Continuous Integration"
}
]
}

0 comments on commit ef9afc2

Please sign in to comment.