diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index f7a4819641cc..b1bb473fab8c 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -16,18 +16,10 @@ jobs: steps: - name: Release - uses: google-github-actions/release-please-action@v3 + uses: google-github-actions/release-please-action@v4 id: release with: release-type: node - package-name: release-please-action - changelog-types: | - [ - {"type": "feat", "section": "Features", "hidden": false}, - {"type": "fix", "section": "Bug Fixes", "hidden": false}, - {"type": "enhance", "section": "Enhancements", "hidden": false}, - {"type": "chore", "section": "Miscellaneous", "hidden": false} - ] - name: Checkout uses: actions/checkout@v4 diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 000000000000..67633f37c77a --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,8 @@ +{ + "changelog-sections": [ + { "type": "feat", "section": "Features", "hidden": false }, + { "type": "fix", "section": "Bug Fixes", "hidden": false }, + { "type": "enhance", "section": "Enhancements", "hidden": false }, + { "type": "chore", "section": "Miscellaneous", "hidden": false } + ] +}