Skip to content

Commit

Permalink
ci(cd): sort release note sections alphabetically
Browse files Browse the repository at this point in the history
Also use folded block for changelog-types param and add tests to changelog
  • Loading branch information
Fdawgs committed Oct 2, 2024
1 parent bbc2391 commit 76b4cb1
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,19 @@ jobs:
# Staying on v3 due to incomplete migration guide for v4
uses: google-github-actions/release-please-action@v3
with:
changelog-types: '[ { "type": "feat", "section": "Features", "hidden": false }, { "type": "fix", "section": "Bug fixes", "hidden": false }, { "type": "build", "section": "Dependencies", "hidden": false }, { "type": "chore", "section": "Miscellaneous", "hidden": false }, { "type": "ci", "section": "Continuous integration", "hidden": false }, { "type": "perf", "section": "Improvements", "hidden": false }, { "type": "refactor", "section": "Improvements", "hidden": false }, { "type": "style", "section": "Miscellaneous", "hidden": false }, { "type": "docs", "section": "Documentation", "hidden": false }]'
changelog-types: >
[
{ "section": "Bug fixes", "type": "fix", "hidden": false },
{ "section": "Continuous integration", "type": "ci", "hidden": false },
{ "section": "Dependencies", "type": "build", "hidden": false },
{ "section": "Documentation", "type": "docs", "hidden": false },
{ "section": "Features", "type": "feat", "hidden": false },
{ "section": "Improvements", "type": "perf", "hidden": false },
{ "section": "Improvements", "type": "refactor", "hidden": false },
{ "section": "Miscellaneous", "type": "chore", "hidden": false },
{ "section": "Miscellaneous", "type": "style", "hidden": false },
{ "section": "Tests", "type": "test", "hidden": false }
]
release-type: node
package-name: fastify-disablecache

Expand Down

0 comments on commit 76b4cb1

Please sign in to comment.