From b1f9ca2cc9fe8b5dc5cbe395268147e26c4889b2 Mon Sep 17 00:00:00 2001 From: Julia Schiller <3196889+juliaschiller150@users.noreply.github.com> Date: Mon, 30 Mar 2026 17:44:43 -0500 Subject: [PATCH] fix: Clean up release-please configs after some experimentation --- .github/workflows/release.yml | 1 + .release-please-manifest.json | 15 +------------- release-please-config.json | 37 +++++++++++++++++++++++------------ 3 files changed, 27 insertions(+), 26 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3059c35..e524adb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,6 +27,7 @@ jobs: env: HUSKY: 0 # Disable husky within CI/CD - uses: googleapis/release-please-action@v4 + id: release with: release-type: node token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json index eab8563..e4d3521 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,16 +1,3 @@ { - ".": "1.1.7", - "changelog-sections": [ - { "type": "feat", "section": "Features" }, - { "type": "fix", "section": "Bug Fixes" }, - { "type": "perf", "section": "Performance Improvements" }, - { "type": "revert", "section": "Reverts" }, - { "type": "chore", "section": "Miscellaneous Chores" }, - { "type": "docs", "section": "Documentation" }, - { "type": "style", "section": "Styles" }, - { "type": "refactor", "section": "Code Refactoring" }, - { "type": "test", "section": "Tests", "hidden": true }, - { "type": "build", "section": "Build System", "hidden": true }, - { "type": "ci", "section": "Continuous Integration", "hidden": true } - ] + ".": "1.1.6" } diff --git a/release-please-config.json b/release-please-config.json index 161d1ad..ce5b92d 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -1,13 +1,26 @@ { - "packages": { - ".": { - "changelog-path": "CHANGELOG.md", - "release-type": "node", - "bump-minor-pre-major": false, - "bump-patch-for-minor-pre-major": false, - "draft": false, - "prerelease": false - } - }, - "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" -} \ No newline at end of file + "packages": { + ".": { + "changelog-path": "CHANGELOG.md", + "release-type": "node", + "bump-minor-pre-major": false, + "bump-patch-for-minor-pre-major": false, + "draft": false, + "prerelease": false, + "changelog-sections": [ + { "type": "feat", "section": "Features" }, + { "type": "fix", "section": "Bug Fixes" }, + { "type": "perf", "section": "Performance Improvements" }, + { "type": "revert", "section": "Reverts" }, + { "type": "chore", "section": "Miscellaneous Chores" }, + { "type": "docs", "section": "Documentation" }, + { "type": "style", "section": "Styles" }, + { "type": "refactor", "section": "Code Refactoring" }, + { "type": "test", "section": "Tests", "hidden": true }, + { "type": "build", "section": "Build System", "hidden": true }, + { "type": "ci", "section": "Continuous Integration", "hidden": true } + ] + } + }, + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" +}