From 01d4cc0ce56e8bbb935b62400a9e622a0580170d Mon Sep 17 00:00:00 2001 From: fOuttaMyPaint Date: Sun, 26 Apr 2026 15:31:30 -0400 Subject: [PATCH] fix: stage all release-doc-sync edits in version bump commit Closes DTD#51. Selective `git add .cursor-plugin/plugin.json README.md CHANGELOG.md` discarded release-doc-sync's CLAUDE.md and ROADMAP.md rewrites at runner teardown. Switching to `git add -A` ensures the bump commit captures all reconciled files. Surfaced when CFX's CLAUDE.md `**Version:**` line silently drifted from plugin.json across multiple releases. Made-with: Cursor --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 57204bf..3d5926b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -171,7 +171,7 @@ jobs: run: | git config user.name "github-actions[bot]" git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git add .cursor-plugin/plugin.json README.md CHANGELOG.md + git add -A git commit -m "chore: bump version to ${{ steps.new.outputs.version }} [skip ci]" git push