feat: add dry run support for release process#493
Merged
Conversation
- Detect prerelease tags (containing hyphen) in release.yml - Mark GitHub releases as prerelease for dry run tags - Skip CHANGELOG update for prerelease tags - Skip package manifest updates for prerelease releases - Add comprehensive documentation for dry run releases in RELEASE.md Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com>
Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add dry run support for release process
feat: add dry run support for release process
Nov 2, 2025
Mossaka
suggested changes
Nov 2, 2025
|
|
||
| ### Added | ||
|
|
||
| - Dry run / test release support in the release workflow: Tags with hyphen suffixes (e.g., `v0.3.4-test1`, `v0.4.0-rc1`) are now treated as prereleases. These releases build and publish binaries to GitHub but skip CHANGELOG updates and package manifest updates, enabling safe testing of the release pipeline without affecting production releases |
Contributor
There was a problem hiding this comment.
change this to a change fragment
Contributor
Author
There was a problem hiding this comment.
Moved to Changed section in commit 1d40148.
…ged section Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com>
Contributor
Author
Fixed in commit 1d40148. Deleted the "What Happens During a Dry Run" section and replaced it with a single concise sentence stating it skips CHANGELOG updates and package manifest updates. |
Mossaka
approved these changes
Nov 2, 2025
Release workflow now supports dry run/test releases for safer testing without affecting production. Updated CLI help text and dependencies, and refactored duplicated tool name constants. Signed-off-by: Jiaxiao Zhou <duibao55328@gmail.com>
Mossaka
added a commit
to Mossaka/wassette
that referenced
this pull request
Feb 2, 2026
* Initial plan * feat: add dry run support for release process - Detect prerelease tags (containing hyphen) in release.yml - Mark GitHub releases as prerelease for dry run tags - Skip CHANGELOG update for prerelease tags - Skip package manifest updates for prerelease releases - Add comprehensive documentation for dry run releases in RELEASE.md Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com> * docs: update CHANGELOG with dry run release feature Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com> * docs: simplify dry run documentation and move CHANGELOG entry to Changed section Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com> * Update CHANGELOG with recent changes and improvements Release workflow now supports dry run/test releases for safer testing without affecting production. Updated CLI help text and dependencies, and refactored duplicated tool name constants. Signed-off-by: Jiaxiao Zhou <duibao55328@gmail.com> --------- Signed-off-by: Jiaxiao Zhou <duibao55328@gmail.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com> Co-authored-by: Jiaxiao Zhou <duibao55328@gmail.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.
Implementation Complete: Dry Run Support for Release Process
Successfully implemented dry run support for the Wassette release process. Tags with hyphen suffixes (e.g.,
v0.3.4-test1) are treated as prereleases and skip CHANGELOG/manifest updates.✅ All Tasks Completed:
Changes Summary:
.github/workflows/release.yml(16 additions, 3 deletions):prerelease: truefor tags containing hyphenupdate-changelogjob for prerelease tags.github/workflows/update-package-manifests.yml(2 additions):RELEASE.md(simplified documentation):CHANGELOG.md(moved to Changed section):How It Works:
For regular releases (e.g.,
v0.4.0):For dry run releases (e.g.,
v0.3.4-test1):Tag Detection Logic:
Supported Prerelease Patterns:
v0.3.4-test1,v0.3.4-test2v0.4.0-rc1,v0.4.0-rc2v0.4.0-alpha,v0.4.0-betav0.3.4-hotfix-testTesting & Validation:
cargo checkUsage Example:
Benefits:
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.