Skip to content

Commit 99a95ac

Browse files
committed
CreateNewMilestoneAction: Rephrase comment about release times to be descriptive
1 parent 255d108 commit 99a95ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ def self.run(params)
1919
newmilestone_duedate = (milestone_duedate.to_datetime.next_day(milestone_duration).to_time).utc
2020
newmilestone_number = Fastlane::Helper::Ios::VersionHelper.calc_next_release_version(last_stone[:title])
2121
number_of_days_from_code_freeze_to_release = params[:number_of_days_from_code_freeze_to_release]
22-
# If there is a review process, we want to submit the binary 3 days before its release
23-
# Using 3 days is mostly for historical reasons where we release the apps on Monday and submit them on Friday.
22+
# Because of the app stores review process, we submit the binary 3 days before the intended release date.
23+
# Using 3 days is mostly for historical reasons, for a long time, we've been submitting apps on Friday and releasing them on Monday.
2424
days_until_submission = params[:need_appstore_submission] ? (number_of_days_from_code_freeze_to_release - 3) : milestone_duration
2525

2626
UI.message("Next milestone: #{newmilestone_number} due on #{newmilestone_duedate}.")

0 commit comments

Comments
 (0)