From acbc1c62ef2ca3001cbefaf1dbd88fac6a398665 Mon Sep 17 00:00:00 2001 From: Alex Potsides Date: Thu, 22 Sep 2022 11:13:28 +0100 Subject: [PATCH] chore: update changelog types to add docs and deps (#4220) This should affect how the release issue is generated, might need some additional lerna config to make sure the github release is created in the same way. --- .github/workflows/test.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0d3100ce79..5c9436e3a6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -233,6 +233,14 @@ jobs: release-type: node manifest-file: .release-please-manifest.json config-file: .release-please.json + changelog-types: | + [ + { "type": "feat", "section": "Features", "hidden": false }, + { "type": "fix", "section": "Bug Fixes", "hidden": false }, + { "type": "chore", "section": "Trivial Changes", "hidden": false }, + { "type": "docs", "section": "Documentation", "hidden": false }, + { "type": "deps", "section": "Dependencies", "hidden": false } + ] - uses: actions/checkout@v2 with: fetch-depth: 0