feat: Add -y / --yes flag for non-interactive CI/CD execution
#416
bolespolo4
started this conversation in
Ideas
Replies: 1 comment
|
Hello @bolespolo4 ! flutter_flavorizr already supports -f (or --force) param to skip interactive mode. This is already well established in the project's CI for testing a blank project. See here Am I missing any point? |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
👋 Hey everyone!
I'd love to start a conversation about adding a non-interactive execution
mode to
flutter_flavorizr— specifically a-y/--yesflag.🔍 Context
Many Flutter teams are adopting automated pipelines (GitHub Actions, Bitrise,
Codemagic, etc.) and want to include
flutter_flavorizras a step in thosepipelines. The current interactive prompt model blocks this completely since
there is no user available to respond during CI runs.
💡 The Idea
Add a
-y/--yesflag to the CLI that:This follows a well-established CLI convention used by tools like:
apt-get install -ynpm init -ycreate-react-app --yes❓ Questions for the Maintainer & Community
-ybe a standalone flag or an extension of the existing-fflag?-y(e.g. destructive or irreversible operations)?
🙋 My Intent
I have already drafted the implementation scope and I am ready to open a PR.
I just want to make sure the approach is aligned before investing the time,
to avoid building something that doesn't fit the project's direction.
Happy to hear any thoughts — from the maintainer or the community! 🚀
All reactions