From e343673f13179ff325f7c25939b7db6bf55f70c0 Mon Sep 17 00:00:00 2001 From: Julia Schiller <3196889+juliaschiller150@users.noreply.github.com> Date: Sun, 29 Mar 2026 22:26:30 -0500 Subject: [PATCH 1/3] chore: Update versionrc to match release-please --- .versionrc.mjs | 71 ++++++++------------------------------------------ 1 file changed, 11 insertions(+), 60 deletions(-) diff --git a/.versionrc.mjs b/.versionrc.mjs index ca24b2f..50d9137 100644 --- a/.versionrc.mjs +++ b/.versionrc.mjs @@ -1,65 +1,16 @@ export default { releaseCommitMessageFormat: 'chore(release): {{currentTag}} [ci-skip]', types: [ - { - type: 'deps', - hidden: false, - section: 'Dependencies' - }, - { - type: 'feat', - hidden: false, - section: 'Features' - }, - { - type: 'fix', - hidden: false, - section: 'Bug Fixes' - }, - { - type: 'build', - hidden: false, - section: 'Build System' - }, - { - type: 'chore', - hidden: false, - section: 'Miscellaneous Chores' - }, - { - type: 'ci', - hidden: false, - section: 'Continuous Integration' - }, - { - type: 'docs', - hidden: false, - section: 'Documentation' - }, - { - type: 'style', - hidden: false, - section: 'Styles' - }, - { - type: 'refactor', - hidden: false, - section: 'Code Refactoring' - }, - { - type: 'perf', - hidden: false, - section: 'Performance Improvements' - }, - { - type: 'test', - hidden: false, - section: 'Tests' - }, - { - type: 'revert', - hidden: false, - section: 'Reverts' - } + { 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 } ] }; From e2efe1403b497cfab70d7af34d715b18e8032110 Mon Sep 17 00:00:00 2001 From: Julia Schiller <3196889+juliaschiller150@users.noreply.github.com> Date: Sun, 29 Mar 2026 22:27:44 -0500 Subject: [PATCH 2/3] ci: Configure release-please so chores are not hidden --- .release-please-manifest.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e4d3521..eab8563 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,16 @@ { - ".": "1.1.6" + ".": "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 } + ] } From 61c30143e6363032cd5211101598599b9bee895f Mon Sep 17 00:00:00 2001 From: Julia Schiller <3196889+juliaschiller150@users.noreply.github.com> Date: Sun, 29 Mar 2026 22:28:38 -0500 Subject: [PATCH 3/3] ci: Ensure release.yml points to GitHub token, among other fixes --- .github/workflows/release.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0cd6576..3059c35 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,13 +26,11 @@ jobs: run: npm ci env: HUSKY: 0 # Disable husky within CI/CD - - name: Configure git - run: | - git config user.name "GitHub Actions Bot" - git config user.email "github-actions-bot@users.noreply.github.com" - uses: googleapis/release-please-action@v4 with: release-type: node + token: ${{ secrets.GITHUB_TOKEN }} + manifest-file: .release-please-manifest.json - name: Build project if: ${{ steps.release.outputs.release_created }} run: npm run build