Skip to content

Commit 096d330

Browse files
Replace is_string stragglers
1 parent 9bc766b commit 096d330

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lib/fastlane/plugin/wpmreleasetoolkit/actions/android/an_validate_lib_strings_action.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def self.available_options
4646
env_name: 'CHECK_LIBS_STRINGS_PATH',
4747
description: 'The list of libs to merge',
4848
optional: false,
49-
is_string: false),
49+
type: Array),
5050
FastlaneCore::ConfigItem.new(key: :diff_url,
5151
env_name: 'CHECK_LIBS_DIFF_URL',
5252
description: 'The url of the diff to check',

lib/fastlane/plugin/wpmreleasetoolkit/actions/common/create_new_milestone_action.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,19 +62,19 @@ def self.available_options
6262
env_name: 'GHHELPER_NEED_APPSTORE_SUBMISSION',
6363
description: 'True if the app needs to be submitted',
6464
optional: true,
65-
is_string: false,
65+
type: Boolean,
6666
default_value: false),
6767
FastlaneCore::ConfigItem.new(key: :milestone_duration,
6868
env_name: 'GHHELPER_MILESTONE_DURATION',
6969
description: 'Milestone duration in number of days',
7070
optional: true,
71-
is_string: false,
71+
type: Integer,
7272
default_value: 14),
7373
FastlaneCore::ConfigItem.new(key: :number_of_days_from_code_freeze_to_release,
7474
env_name: 'GHHELPER_NUMBER_OF_DAYS_FROM_CODE_FREEZE_TO_RELEASE',
7575
description: 'Number of days from code freeze to release',
7676
optional: true,
77-
is_string: false,
77+
type: Integer,
7878
default_value: 14),
7979
Fastlane::Helper::GithubHelper.github_token_config_item,
8080
]

lib/fastlane/plugin/wpmreleasetoolkit/actions/common/setfrozentag_action.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def self.available_options
7171
description: 'The GitHub milestone',
7272
optional: false,
7373
default_value: true,
74-
is_string: false),
74+
type: Boolean),
7575
Fastlane::Helper::GithubHelper.github_token_config_item,
7676
]
7777
end

0 commit comments

Comments
 (0)