fix(build): remove draft flag that prevents release tag creation#533
Merged
agreaves-ms merged 1 commit intomainfrom Feb 13, 2026
Merged
fix(build): remove draft flag that prevents release tag creation#533agreaves-ms merged 1 commit intomainfrom
agreaves-ms merged 1 commit intomainfrom
Conversation
- draft releases do not create git tags, breaking version anchoring - release-please cannot find prior version without a tag - causes full commit history rescan and incorrect major bump 🔧 - Generated by Copilot
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR fixes release automation by ensuring GitHub releases created via release-please are published immediately (not as drafts), so the corresponding git tag is created and future version calculations remain correctly anchored.
Changes:
- Removed the top-level
"draft": truesetting fromrelease-please-config.json.
agreaves-ms
approved these changes
Feb 13, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #533 +/- ##
==========================================
- Coverage 85.36% 85.34% -0.03%
==========================================
Files 23 23
Lines 4475 4475
==========================================
- Hits 3820 3819 -1
- Misses 655 656 +1
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
This was referenced Feb 13, 2026
agreaves-ms
pushed a commit
that referenced
this pull request
Feb 13, 2026
🤖 I have created a release *beep* *boop* --- ## [2.3.1](hve-core-v2.3.0...hve-core-v2.3.1) (2026-02-13) ### 🐛 Bug Fixes * **build:** remove draft flag that prevents release tag creation ([#533](#533)) ([c8de0aa](c8de0aa)) * **workflows:** correct JSON output formatting in plugin discovery step ([#531](#531)) ([910fb8b](910fb8b)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: hve-core-release-please[bot] <254602402+hve-core-release-please[bot]@users.noreply.github.com>
This was referenced Feb 13, 2026
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.
Description
Removed the
"draft": truesetting fromrelease-please-config.json. Draft GitHub releases do not create git tags, which broke release-please's version anchoring. Without the prior version tag, release-please rescanned the full commit history, found an old breaking change, and incorrectly bumped from 2.3.0 to 3.0.0 instead of computing the next patch or minor version."draft": truefrom the top-level config object inrelease-please-config.jsonRelated Issue(s)
Type of Change
Select all that apply:
Code & Documentation:
Infrastructure & Configuration:
AI Artifacts:
prompt-builderagent and addressed all feedback.github/instructions/*.instructions.md).github/prompts/*.prompt.md).github/agents/*.agent.md).github/skills/*/SKILL.md)Other:
.ps1,.sh,.py)Testing
release-please-config.jsonafter edit"draft": true,Checklist
Required Checks
Required Automated Checks
The following validation commands must pass before merging:
npm run lint:mdnpm run spell-checknpm run lint:frontmatternpm run lint:md-linksnpm run lint:psSecurity Considerations
Additional Notes
Two manual follow-up actions are required after this PR merges:
hve-core-v2.3.0git tag that anchors future release-please runsrelease-please--branches--main--components--hve-coreWithout publishing the draft release, release-please will still fail to find the v2.3.0 version anchor even after this config fix lands on main.
🔧 - Generated by Copilot