diff --git a/.github/release-please-config.json b/.github/release-please-config.json index b85be85e..9a982c88 100644 --- a/.github/release-please-config.json +++ b/.github/release-please-config.json @@ -4,47 +4,58 @@ "changelog-path": "CHANGELOG.md" } }, + "release-type": "node", "include-component-in-tag": false, "changelog-sections": [ { "section": "🚀 Features", - "type": "feat" + "type": "feat", + "hidden": false }, { "section": "🐛 Bug Fixes", - "type": "fix" + "type": "fix", + "hidden": false }, { "section": "🐛 Bug Fixes", - "type": "style" + "type": "style", + "hidden": false }, { "section": "🐛 Bug Fixes", - "type": "perf" + "type": "perf", + "hidden": false }, { "section": "🧰 Maintenance", - "type": "refactor" + "type": "refactor", + "hidden": false }, { "section": "🧰 Maintenance", - "type": "test" + "type": "test", + "hidden": false }, { "section": "🧰 Maintenance", - "type": "build" + "type": "build", + "hidden": false }, { "section": "🧰 Maintenance", - "type": "docs" + "type": "docs", + "hidden": false }, { "section": "🧰 Maintenance", - "type": "ci" + "type": "ci", + "hidden": false }, { "section": "🧰 Maintenance", - "type": "revert" + "type": "revert", + "hidden": false } ], "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 49faf7cc..9743502a 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -17,6 +17,6 @@ jobs: id: release with: token: ${{ secrets.GITHUB_TOKEN }} - release-type: node + target-branch: main config-file: .github/release-please-config.json manifest-file: .github/release-please-manifest.json