feat: integrate release-doc-sync to keep release docs aligned#7
Merged
TMHSDigital merged 1 commit intomainfrom Apr 25, 2026
Merged
feat: integrate release-doc-sync to keep release docs aligned#7TMHSDigital merged 1 commit intomainfrom
TMHSDigital merged 1 commit intomainfrom
Conversation
Adds the release-doc-sync@v1.0 composite action from the meta-repo to release.yml. After plugin.json is bumped on auto-release, the action prepends a stub entry to CHANGELOG.md for the new version. This repo does not ship CLAUDE.md or ROADMAP.md, so the action's CLAUDE/ROADMAP edits are no-ops here (the action reports them as "missing" and exits cleanly). The existing "Commit version bump" step uses a selective `git add .cursor-plugin/plugin.json README.md` rather than `git add -A`, so CHANGELOG.md is added to that list to ensure the prepended entry actually lands in the release commit. Without this change the action would run but its sole useful output (the CHANGELOG prepend) would be silently discarded. Phase 2c rollout following the Docker smoke test pattern. The action is verified working at v1.8.2 (pinned via @v1.0 floating tag). Refs TMHSDigital/Developer-Tools-Directory#5. Signed-off-by: 154358121+TMHSDigital@users.noreply.github.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Integrates the
release-doc-sync@v1.0composite action intorelease.yml. Afterplugin.jsonis bumped on auto-release, the action prepends a stub entry toCHANGELOG.mdfor the new version.This repo does not ship
CLAUDE.mdorROADMAP.md, so the action's CLAUDE/ROADMAP edits are no-ops here (the action reports them asmissingand exits cleanly).One small adjustment to
git addThis repo's existing "Commit version bump" step uses
rather than the
git add -Apattern used by Docker / Steam / Home-Lab / Monday. To make sure the action's CHANGELOG prepend actually lands in the release commit, this PR addsCHANGELOG.mdto that list:Without this change the action would run successfully but its sole useful output for this repo would be silently discarded.
Phase 2c parallel rollout following the Docker smoke test (verified at
v1.8.2ofrelease-doc-sync).The PR's own CI does not exercise
release-doc-syncdirectly. Validation happens on the next auto-release post-merge.Refs
TMHSDigital/Developer-Tools-Directory#5.