Skip to content

Commit

Permalink
ci(cd): sort release note sections alphabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Jun 22, 2024
1 parent a2b5fe7 commit 577d868
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ jobs:
with:
changelog-types: >
[
{ "type": "build", "section": "Dependencies", "hidden": false },
{ "type": "chore", "section": "Miscellaneous", "hidden": false },
{ "type": "ci", "section": "Continuous integration", "hidden": false },
{ "type": "docs", "section": "Documentation", "hidden": false },
{ "type": "feat", "section": "Features", "hidden": false },
{ "type": "fix", "section": "Bug fixes", "hidden": false },
{ "type": "perf", "section": "Improvements", "hidden": false },
{ "type": "refactor", "section": "Improvements", "hidden": false },
{ "type": "style", "section": "Miscellaneous", "hidden": false },
{ "type": "test", "section": "Tests", "hidden": false }
{ "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

Expand Down

0 comments on commit 577d868

Please sign in to comment.