From 680cc2537b65de16aad7a931971155a9ff10b638 Mon Sep 17 00:00:00 2001 From: Manish Rathi Date: Tue, 15 Jun 2021 17:40:19 +0200 Subject: [PATCH] [action][deploygate] remove all instances of `is_string` in options and use `type` (#18868) --- fastlane/lib/fastlane/actions/deploygate.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fastlane/lib/fastlane/actions/deploygate.rb b/fastlane/lib/fastlane/actions/deploygate.rb index 23cc0642596..af57d593c9e 100644 --- a/fastlane/lib/fastlane/actions/deploygate.rb +++ b/fastlane/lib/fastlane/actions/deploygate.rb @@ -157,13 +157,12 @@ def self.available_options description: "Release note for distribution page"), FastlaneCore::ConfigItem.new(key: :disable_notify, optional: true, - is_string: false, + type: Boolean, default_value: false, env_name: "DEPLOYGATE_DISABLE_NOTIFY", description: "Disables Push notification emails"), FastlaneCore::ConfigItem.new(key: :distribution_name, optional: true, - is_string: true, env_name: "DEPLOYGATE_DISTRIBUTION_NAME", description: "Target Distribution Name") ]