Fix deploy skill skip flow to find latest tag in branch history#42
Fix deploy skill skip flow to find latest tag in branch history#42sebastientaggart merged 2 commits intodevfrom
Conversation
Release v0.3.3
The "skip version bump" path previously required a tag on HEAD exactly, which failed when HEAD had moved past the tag commit. Now uses git describe --tags --abbrev=0 to find the most recent tag in the branch history. Also updates ROADMAP.md to reflect the combined /deploy skill name and regenerates adapter files.
Review SummaryVerdict: APPROVE Findings
No issues found. The deploy fix is correct, the status "What's next" feature is well-structured, and all adapter files are properly synced. |
The "skip version bump" path in
/deploypreviously required a version tag on HEAD exactly (git describe --exact-match), which failed when HEAD had moved past the tag commit. This changes it togit describe --tags --abbrev=0to find the most recent tag in the branch history.Also updates ROADMAP.md to reflect the combined
/deployskill name (was still referencing/versionand/release) and regenerates all adapter files.Issue #36