class Fastlane::Actions::ReleaseNotesAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/release_notes_action.rb, line 18
def self.authors
  ["ericmartineau"]
end
available_options() click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/release_notes_action.rb, line 31
def self.available_options
  [
      FastlaneCore::ConfigItem.new(key: :changelog,
                                   env_name: "SUNNY_PROJECT_CHANGES",
                                   description: "Change log text",
                                   optional: true,
                                   type: String)
  ]
end
description() click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/release_notes_action.rb, line 14
def self.description
  "Get or retrieve release notes from git"
end
details() click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/release_notes_action.rb, line 26
def self.details
  # Optional:
  ""
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/release_notes_action.rb, line 41
def self.is_supported?(platform)
  # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
  # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
  #
  # [:ios, :mac, :android].include?(platform)
  true
end
return_value() click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/release_notes_action.rb, line 22
def self.return_value
  # If your method provides a return value, you can describe here what it does
end
run(options) click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/release_notes_action.rb, line 10
def self.run(options)
  Sunny.release_notes(options)
end