From 2716d5e93ff96e1d922fa78427148b5aa12d85bc Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 18 Jun 2026 09:11:32 -0500 Subject: [PATCH] Set notify_external_testers explicitly for TestFlight assignment fastlane warned it was relying on App Store Connect's default (true) for notifying external testers. Set notify_external_testers:true explicitly so behavior doesn't depend on an Apple-side default that could change. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/build-submit-ios.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-submit-ios.yml b/.github/workflows/build-submit-ios.yml index a1dfd52cb4..9b16a2d12c 100644 --- a/.github/workflows/build-submit-ios.yml +++ b/.github/workflows/build-submit-ios.yml @@ -241,7 +241,8 @@ jobs: app_identifier:"xyz.blueskyweb.app" \ app_version:"$APP_VERSION" \ build_number:"$BUILD_NUMBER" \ - groups:"QA Team" + groups:"QA Team" \ + notify_external_testers:true - name: 🔔 Notify Slack of Production Build if: ${{ inputs.profile == 'production' }}