From 686e01e2159acd89faa709df1b7ee5255de1ef3e Mon Sep 17 00:00:00 2001 From: MikePlante1 <82073483+MikePlante1@users.noreply.github.com> Date: Sun, 19 Nov 2023 15:22:45 -0500 Subject: [PATCH] Add branch+commit to "What to Test" field in TestFlight. Adds the branch and last commit to the "What to Test" field in TestFlight to more easily determine the version of each available option in your TestFlight is. --- fastlane/Fastfile | 1 + 1 file changed, 1 insertion(+) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index f918b3aa4..a8cb9278e 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -156,6 +156,7 @@ platform :ios do skip_submission: false, ipa: "Loop.ipa", skip_waiting_for_build_processing: true, + changelog: git_branch+" "+last_git_commit[:abbreviated_commit_hash], ) end