[CI] Make release workflow support RC process#8710
Open
zpoint wants to merge 1 commit intoskypilot-org:masterfrom
Open
[CI] Make release workflow support RC process#8710zpoint wants to merge 1 commit intoskypilot-org:masterfrom
zpoint wants to merge 1 commit intoskypilot-org:masterfrom
Conversation
- Change scheduled trigger from biweekly (1st/15th) to monthly (1st only) - Scheduled trigger now creates next minor RC1 (e.g., 0.11.0 -> 0.12.0rc1) instead of incrementing patch version - Add `promote_rc_to_stable` option to promote latest PyPI RC to stable (e.g., 0.12.0rc2 -> 0.12.0) with automatic test skipping - Fix version verification to use PEP 440 comparison instead of requiring exact next patch version Fixes skypilot-org#8308 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Contributor
|
Note Gemini is unable to generate a summary for this pull request due to the file types involved not being currently supported. |
Collaborator
Author
|
@Michaelvll Could you confirm the behavior described in the PR? I'm not entirely sure what we should do if a version like I'll run manual tests before merging once it's confirmed. |
aylei
approved these changes
Feb 16, 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.
Summary
0.11.0→0.12.0rc1) instead of incrementing patch versionpromote_rc_to_stableoption to promote latest PyPI RC to stable (e.g.,0.12.0rc2→0.12.0) with automatic test skippingFixes #8308
Test plan
Version Logic Verification (manual inspection)
0.11.00.12.0rc10.11.0rc20.12.0rc10.11.0.post10.12.0rc10.12.0rc2promote_rc_to_stable=true0.12.0, skips tests0.11.0promote_rc_to_stable=truerelease_version=0.12.0rc30.12.0rc3PEP 440 Version Comparison
The new verification uses Python's
packaginglibrary for correct ordering:0.12.0rc1 > 0.11.0.post1 > 0.11.0 > 0.11.0rc2 > 0.11.0rc1🤖 Generated with Claude Code