Class: Fastlane::Actions::CreateNewMilestoneAction
- Inherits:
-
Action
- Object
- Action
- Fastlane::Actions::CreateNewMilestoneAction
- Defined in:
- lib/fastlane/plugin/wpmreleasetoolkit/actions/common/create_new_milestone_action.rb
Class Method Summary collapse
- .authors ⇒ Object
- .available_options ⇒ Object
- .description ⇒ Object
- .details ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .return_value ⇒ Object
- .run(params) ⇒ Object
Class Method Details
.authors ⇒ Object
40 41 42 |
# File 'lib/fastlane/plugin/wpmreleasetoolkit/actions/common/create_new_milestone_action.rb', line 40 def self. ['Automattic'] end |
.available_options ⇒ Object
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/fastlane/plugin/wpmreleasetoolkit/actions/common/create_new_milestone_action.rb', line 53 def self. [ FastlaneCore::ConfigItem.new(key: :repository, env_name: 'GHHELPER_REPOSITORY', description: 'The remote path of the GH repository on which we work', optional: false, type: String), FastlaneCore::ConfigItem.new(key: :need_appstore_submission, env_name: 'GHHELPER_NEED_APPSTORE_SUBMISSION', description: 'True if the app needs to be submitted', optional: true, type: Boolean, default_value: false), FastlaneCore::ConfigItem.new(key: :milestone_duration, env_name: 'GHHELPER_MILESTONE_DURATION', description: 'Milestone duration in number of days', optional: true, type: Integer, default_value: 14), FastlaneCore::ConfigItem.new(key: :number_of_days_from_code_freeze_to_release, env_name: 'GHHELPER_NUMBER_OF_DAYS_FROM_CODE_FREEZE_TO_RELEASE', description: 'Number of days from code freeze to release', optional: true, type: Integer, default_value: 14), Fastlane::Helper::GithubHelper.github_token_config_item, ] end |
.description ⇒ Object
36 37 38 |
# File 'lib/fastlane/plugin/wpmreleasetoolkit/actions/common/create_new_milestone_action.rb', line 36 def self.description 'Creates a new milestone for the project' end |
.details ⇒ Object
48 49 50 51 |
# File 'lib/fastlane/plugin/wpmreleasetoolkit/actions/common/create_new_milestone_action.rb', line 48 def self.details # Optional: 'Creates a new milestone for the project' end |
.is_supported?(platform) ⇒ Boolean
82 83 84 |
# File 'lib/fastlane/plugin/wpmreleasetoolkit/actions/common/create_new_milestone_action.rb', line 82 def self.is_supported?(platform) true end |
.return_value ⇒ Object
44 45 46 |
# File 'lib/fastlane/plugin/wpmreleasetoolkit/actions/common/create_new_milestone_action.rb', line 44 def self.return_value # If your method provides a return value, you can describe here what it does end |
.run(params) ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/fastlane/plugin/wpmreleasetoolkit/actions/common/create_new_milestone_action.rb', line 8 def self.run(params) repository = params[:repository] github_helper = Fastlane::Helper::GithubHelper.new(github_token: params[:github_token]) last_stone = github_helper.get_last_milestone(repository) UI.("Last detected milestone: #{last_stone[:title]} due on #{last_stone[:due_on]}.") milestone_duedate = last_stone[:due_on] milestone_duration = params[:milestone_duration] newmilestone_duedate = milestone_duedate.to_datetime.next_day(milestone_duration).to_time.utc newmilestone_number = Fastlane::Helper::Ios::VersionHelper.calc_next_release_version(last_stone[:title]) number_of_days_from_code_freeze_to_release = params[:number_of_days_from_code_freeze_to_release] # Because of the app stores review process, we submit the binary 3 days before the intended release date. # Using 3 days is mostly for historical reasons, for a long time, we've been submitting apps on Friday and releasing them on Monday. days_until_submission = params[:need_appstore_submission] ? (number_of_days_from_code_freeze_to_release - 3) : milestone_duration UI.("Next milestone: #{newmilestone_number} due on #{newmilestone_duedate}.") github_helper.create_milestone( repository: repository, title: newmilestone_number, due_date: newmilestone_duedate, days_until_submission: days_until_submission, days_until_release: number_of_days_from_code_freeze_to_release ) end |