-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
ci: use builds.yml as single source of truth for OTA push env config #28839
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -100,6 +100,7 @@ _secrets: &secrets # Infrastructure | |
| MM_BRAZE_SDK_ENDPOINT: 'MM_BRAZE_SDK_ENDPOINT' | ||
| # Expo | ||
| EXPO_PROJECT_ID: 'EXPO_PROJECT_ID' | ||
| EXPO_TOKEN: 'EXPO_TOKEN' | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. BSC and SEI QuickNode secrets missing from builds.ymlHigh Severity
Additional Locations (1)Reviewed by Cursor Bugbot for commit 2fd32c0. Configure here.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've confirmed with @Prithpal-Sooriya that we don't need |
||
|
|
||
| # Signing config (AWS Secrets Manager) - omit for dev/simulator builds | ||
| # android_keystore_path: filename in android/keystores/ (build.gradle expects fixed paths) | ||
|
|
||


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.
MM_PERPS_ENABLED dropped from OTA builds without builds.yml entry
Medium Severity
The old workflow explicitly set
MM_PERPS_ENABLED: 'true'as a job-level env var, but this PR removes it without adding a corresponding entry tobuilds.yml's_public_envs. The app code inselectPerpsEnabledFlagusesprocess.env.MM_PERPS_ENABLED === 'true'as a fallback when the remote feature flag is unavailable or invalid. With the env var now unset, the fallback evaluates tofalse, silently disabling perps in OTA builds whenever the remote flag service is unreachable or the flag isn't configured. Other perps-related vars likeMM_PERPS_HIP3_ENABLEDandMM_PERPS_BLOCKED_REGIONSare present in_public_envs, suggesting this omission is unintentional.Additional Locations (1)
builds.yml#L22-L49Reviewed by Cursor Bugbot for commit c030552. Configure here.
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.
If MM_PERPS_ENABLED isn't in builds.yml we don't have it to begin with so this is fine