[eas-cli] Add --value flag to build:version:set for non-interactive mode#3395
Draft
brentvatne wants to merge 1 commit intomainfrom
Draft
[eas-cli] Add --value flag to build:version:set for non-interactive mode#3395brentvatne wants to merge 1 commit intomainfrom
brentvatne wants to merge 1 commit intomainfrom
Conversation
This allows running `eas build:version:set` non-interactively with a value flag, e.g., `eas build:version:set -p android -v 130`. - Add `--value/-v` flag to specify version value directly - Add `--non-interactive` flag following existing CLI patterns - Providing `--value` implies non-interactive mode - Platform-specific validation for the provided value - Add comprehensive tests for non-interactive mode https://claude.ai/code/session_017bU3cyvFhpnHnqqZFqnyVH
|
❌ It looks like a changelog entry is missing for this PR. Add it manually to CHANGELOG.md. |
Member
Author
|
/changelog-entry new-feature Add --value flag for build:version:set to support usage in non-interactive mode |
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.
This allows running
eas build:version:setnon-interactively with a value flag, e.g.,eas build:version:set -p android -v 130.https://claude.ai/code/session_017bU3cyvFhpnHnqqZFqnyVH
Why
Requested here: https://x.com/devth/status/2021745057511190817
In general, we want to support non-interactive mode throughout EAS CLI.
How
--value/-vflag to specify version value directly--non-interactiveflag following existing CLI patterns (this is a bit of a weird thing in EAS CLI, but that is an issue for another day). Providing--valueimplies non-interactive modeTest Plan