Skip to content

feat: Add Fastlane automation for iOS App Privacy Details upload#531

Draft
Copilot wants to merge 3 commits intomainfrom
copilot/add-confidentiality-statement-automation
Draft

feat: Add Fastlane automation for iOS App Privacy Details upload#531
Copilot wants to merge 3 commits intomainfrom
copilot/add-confidentiality-statement-automation

Conversation

Copy link
Contributor

Copilot AI commented Nov 11, 2025

Automates uploading App Privacy Details to App Store Connect using Fastlane's upload_app_privacy_details_to_app_store action, 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 user
  • fastlane/ios/fastlane/Fastfile: New upload_privacy lane using App Store Connect API authentication
  • .github/workflows/ios-upload.yml: Added step to run upload_privacy after marketing asset upload
  • README.md: Documented privacy configuration and lane usage

Privacy 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-appstore branch. Manual execution: cd fastlane/ios/fastlane && bundle exec fastlane upload_privacy

Warning

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
    • Triggering command: /usr/bin/ruby3.2 /usr/local/bin/fastlane action upload_app_privacy_details_to_app_store (dns block)
    • Triggering command: /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

This section details on the original issue you should resolve

<issue_title>Add Confidentiality statement automation to Fastlane</issue_title>
<issue_description> - [ ] https://docs.fastlane.tools/uploading-app-privacy-details/

App Privacy
Published 10 months ago by Stephane Gigandet

Privacy Policy
Edit
English (U.S.)
?
Privacy Policy URL
?
https://world.openfoodfacts.org/terms-of-use

User Privacy Choices URL
(Optional)

?

Product Page Preview
See Details
Data Not Linked to You

The following data may be collected but is not linked to your identity:

Diagnostics

Usage Data

Data Types
Edit
2 data types collected from this app: Crash Data, Product Interaction
Usage Data

Product Interaction

?
Edit
Used for Analytics, and App Functionality
Diagnostics

Crash Data

?
Edit
Used for App Functionality

What

Part of</issue_description>

Comments on the Issue (you are @copilot in this section)


💡 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.

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
Copilot AI requested a review from teolemon November 11, 2025 19:08
@teolemon teolemon changed the title Add Fastlane automation for iOS App Privacy Details upload feat: Add Fastlane automation for iOS App Privacy Details upload Nov 11, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Status: 💬 To discuss and validate

Development

Successfully merging this pull request may close these issues.

Add Confidentiality statement automation to Fastlane

2 participants