feat: Add Fastlane automation for iOS App Privacy Details upload#531
Draft
feat: Add Fastlane automation for iOS App Privacy Details upload#531
Conversation
Co-authored-by: teolemon <1689815+teolemon@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add confidentiality statement automation to Fastlane
Add Fastlane automation for iOS App Privacy Details upload
Nov 11, 2025
teolemon
reviewed
Nov 11, 2025
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.
Automates uploading App Privacy Details to App Store Connect using Fastlane's
upload_app_privacy_details_to_app_storeaction, as referenced in the Fastlane documentation.Changes
fastlane/ios/fastlane/app_privacy_details.json: Privacy configuration with two data categories (Crash Data, Product Interaction), both marked as not linked to userfastlane/ios/fastlane/Fastfile: Newupload_privacylane using App Store Connect API authentication.github/workflows/ios-upload.yml: Added step to runupload_privacyafter marketing asset uploadREADME.md: Documented privacy configuration and lane usagePrivacy Configuration
{ "privacy_policy_url": "https://world.openfoodfacts.org/terms-of-use", "data_categories": [ { "category": "DIAGNOSTICS", "type": "CRASH_DATA", "purposes": ["APP_FUNCTIONALITY"], "data_protection": "DATA_NOT_LINKED_TO_YOU" }, { "category": "USAGE_DATA", "type": "PRODUCT_INTERACTION", "purposes": ["ANALYTICS", "APP_FUNCTIONALITY"], "data_protection": "DATA_NOT_LINKED_TO_YOU" } ] }Runs automatically on push to
upload-to-appstorebranch. Manual execution:cd fastlane/ios/fastlane && bundle exec fastlane upload_privacyWarning
Firewall rules blocked me from connecting to one or more addresses (expand for details)
I tried to connect to the following addresses, but was blocked by firewall rules:
www.google-analytics.com/usr/bin/ruby3.2 /usr/local/bin/fastlane action upload_app_privacy_details_to_app_store(dns block)/usr/bin/ruby3.2 /usr/local/bin/fastlane lanes(dns block)If you need me to access, download, or install something from one of these locations, you can either:
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.