fastlane/lib/fastlane/actions/testfairy.rb in fastlane-2.222.0 vs fastlane/lib/fastlane/actions/testfairy.rb in fastlane-2.223.0

- old
+ new

@@ -94,10 +94,12 @@ [key, value] when :options [key, options_to_client.call(value).join(',')] when :custom [key, value] + when :tags + [key, value.join(',')] else UI.user_error!("Unknown parameter: #{key}") end end] @@ -239,10 +241,16 @@ default_value: ''), FastlaneCore::ConfigItem.new(key: :timeout, env_name: "FL_TESTFAIRY_TIMEOUT", description: "Request timeout in seconds", type: Integer, - optional: true) + optional: true), + FastlaneCore::ConfigItem.new(key: :tags, + optional: true, + env_name: "FL_TESTFAIRY_TAGS", + description: "Custom tags that can be used to organize your builds", + type: Array, + default_value: []) ] end def self.example_code [