From 8410e05846ff6165dea496da171a5ee43f7a0634 Mon Sep 17 00:00:00 2001 From: Bhaskar N S Date: Mon, 16 Feb 2026 15:55:58 +0530 Subject: [PATCH 1/2] remove slack channel token from env configuration --- fastlane/.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane/.env b/fastlane/.env index b39bc39..446eaff 100644 --- a/fastlane/.env +++ b/fastlane/.env @@ -10,4 +10,4 @@ BADGE_ICONFILES = "/OSCA/Assets.xcassets/AppIcon.appiconset/*icon*.png" # slack settings SLACK_ONLY_ON_FAILURE = "false" -SLACK_URL = "https://hooks.slack.com/services/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" +SLACK_URL = "https://hooks.slack.com/services/SLACK_CHANNEL_TOKEN" From 53a378e5725a0eb683d95a72ff066bcf6cae796e Mon Sep 17 00:00:00 2001 From: Bhaskar N S Date: Mon, 16 Feb 2026 16:30:52 +0530 Subject: [PATCH 2/2] remove slack channel token from Fastfile configuration --- fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 857bdb9..b11eb33 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -225,7 +225,7 @@ puts ENV["SLACK_URL"] # Send a slack notification on success unless (ENV["SLACK_ONLY_ON_FAILURE"] == "true") then - ENV["SLACK_URL"] = "https://hooks.slack.com/services/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" + ENV["SLACK_URL"] = "https://hooks.slack.com/services/SLACK_CHANNEL_TOKEN" app_version = git_tag_prefix + "/" + new_build_number.to_s slack_payload = [:last_git_commit, :last_git_commit_hash, :git_author]