diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 5266921..09cfe24 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -16,18 +16,3 @@ jobs: - uses: googleapis/release-please-action@v4 with: token: ${{ secrets.RELEASE_PLEASE_TOKEN }} - release-type: node - changelog-types: | - [ - {"type":"feat","section":"๐Ÿš€ Features","hidden":false}, - {"type":"fix","section":"๐Ÿ› Bug Fixes","hidden":false}, - {"type":"perf","section":"โ†—๏ธ Performance Improvements","hidden":false}, - {"type":"revert","section":"๐Ÿ”™ Reverts","hidden":false}, - {"type":"docs","section":"๐Ÿ“– Documentation","hidden":false}, - {"type":"style","section":"๐Ÿ’… Styles","hidden":false}, - {"type":"chore","section":"๐Ÿงน Chores","hidden":true}, - {"type":"refactor","section":"๐Ÿ›  Refactorings","hidden":false}, - {"type":"test","section":"โœ… Tests","hidden":false}, - {"type":"build","section":"๐Ÿ“ฆ Build System & Dependencies","hidden":false}, - {"type":"ci","section":"๐Ÿ”„ CI/CD","hidden":true} - ] diff --git a/release-please-config.json b/release-please-config.json index 161d1ad..1a193c8 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -6,8 +6,65 @@ "bump-minor-pre-major": false, "bump-patch-for-minor-pre-major": false, "draft": false, - "prerelease": false + "prerelease": false, + "changelog-types": [ + { + "type": "feat", + "section": "๐Ÿš€ Features", + "hidden": false + }, + { + "type": "fix", + "section": "๐Ÿ› Bug Fixes", + "hidden": false + }, + { + "type": "perf", + "section": "โ†—๏ธ Performance Improvements", + "hidden": false + }, + { + "type": "revert", + "section": "๐Ÿ”™ Reverts", + "hidden": false + }, + { + "type": "docs", + "section": "๐Ÿ“– Documentation", + "hidden": false + }, + { + "type": "style", + "section": "๐Ÿ’… Styles", + "hidden": false + }, + { + "type": "chore", + "section": "๐Ÿงน Chores", + "hidden": true + }, + { + "type": "refactor", + "section": "๐Ÿ›  Refactorings", + "hidden": false + }, + { + "type": "test", + "section": "โœ… Tests", + "hidden": false + }, + { + "type": "build", + "section": "๐Ÿ“ฆ Build System & Dependencies", + "hidden": false + }, + { + "type": "ci", + "section": "๐Ÿ”„ CI/CD", + "hidden": true + } + ] } }, "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" -} \ No newline at end of file +}