match/lib/match/options.rb in fastlane-2.21.0.beta.20170317010039 vs match/lib/match/options.rb in fastlane-2.21.0.beta.20170318010107
- old
+ new
@@ -62,9 +62,19 @@
optional: true,
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_id),
verify_block: proc do |value|
ENV["FASTLANE_TEAM_ID"] = value.to_s
end),
+ FastlaneCore::ConfigItem.new(key: :git_full_name,
+ env_name: "MATCH_GIT_FULL_NAME",
+ description: "git user full name to commit",
+ optional: true,
+ default_value: nil),
+ FastlaneCore::ConfigItem.new(key: :git_user_email,
+ env_name: "MATCH_GIT_USER_EMAIL",
+ description: "git user email to commit",
+ optional: true,
+ default_value: nil),
FastlaneCore::ConfigItem.new(key: :team_name,
short_option: "-l",
env_name: "FASTLANE_TEAM_NAME",
description: "The name of your Developer Portal team if you're in multiple teams",
optional: true,