-
Notifications
You must be signed in to change notification settings - Fork 49.5k
[ci] Allow dry run #34765
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ci] Allow dry run #34765
Conversation
Comparing: a664f5f...450ad4d Critical size changesIncludes critical production bundles, as well as any change greater than 2%:
Significant size changesIncludes any change greater than 0.2%: (No significant changes) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds dry run functionality to the compiler release script, enabling testing of the release process without actually publishing packages. This allows for safer validation of release workflows and configurations before executing actual releases.
- Added dry run support to CI workflows with conditional execution paths
- Introduced dry_run input parameter to manual and reusable workflow definitions
- Modified version string generation logic to handle 'latest' tag separately
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.
File | Description |
---|---|
compiler/scripts/release/publish.js | Updates version string generation logic to handle 'latest' tag case |
.github/workflows/compiler_prereleases_nightly.yml | Adds dry_run parameter set to false for nightly releases |
.github/workflows/compiler_prereleases_manual.yml | Adds dry_run input parameter for manual workflow triggers |
.github/workflows/compiler_prereleases.yml | Implements conditional dry run execution with separate workflow steps |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Script was using the wrong version name. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/34764). * #34765 * __->__ #34764
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Allow running the compiler release script as dry run.
Allow running the compiler release script as dry run.