class Fastlane::Actions::UninowSentrySetCommitsAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/uninow_sentry/actions/uninow_sentry_set_commits.rb, line 70
def self.authors
  ["brownoxford"]
end
available_options() click to toggle source
# File lib/fastlane/plugin/uninow_sentry/actions/uninow_sentry_set_commits.rb, line 43
def self.available_options
  Helper::UninowSentryConfig.common_api_config_items + [
    FastlaneCore::ConfigItem.new(key: :version,
                                 description: "Release version on Sentry"),
    FastlaneCore::ConfigItem.new(key: :app_identifier,
                                short_option: "-a",
                                env_name: "SENTRY_APP_IDENTIFIER",
                                description: "App Bundle Identifier, prepended to version",
                                optional: true),
    FastlaneCore::ConfigItem.new(key: :auto,
                                description: "Enable completely automated commit management",
                                is_string: false,
                                default_value: false),
    FastlaneCore::ConfigItem.new(key: :clear,
                                description: "Clear all current commits from the release",
                                is_string: false,
                                default_value: false),
    FastlaneCore::ConfigItem.new(key: :commit,
                                description: "Commit spec, see `sentry-cli releases help set-commits` for more information",
                                optional: true)
  ]
end
description() click to toggle source

@!group Documentation

# File lib/fastlane/plugin/uninow_sentry/actions/uninow_sentry_set_commits.rb, line 32
def self.description
  "Set commits of a release"
end
details() click to toggle source
# File lib/fastlane/plugin/uninow_sentry/actions/uninow_sentry_set_commits.rb, line 36
def self.details
  [
    "This action allows you to set commits in a release for a project on Sentry.",
    "See https://docs.sentry.io/cli/releases/#sentry-cli-commit-integration for more information."
  ].join(" ")
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/uninow_sentry/actions/uninow_sentry_set_commits.rb, line 74
def self.is_supported?(platform)
  true
end
return_value() click to toggle source
# File lib/fastlane/plugin/uninow_sentry/actions/uninow_sentry_set_commits.rb, line 66
def self.return_value
  nil
end
run(params) click to toggle source
# File lib/fastlane/plugin/uninow_sentry/actions/uninow_sentry_set_commits.rb, line 4
def self.run(params)
  require 'shellwords'

  Helper::UninowSentryHelper.check_sentry_cli!
  Helper::UninowSentryConfig.parse_api_params(params)

  version = params[:version]
  version = "#{params[:app_identifier]}-#{params[:version]}" if params[:app_identifier]

  command = [
    "sentry-cli",
    "releases",
    "set-commits",
    version
  ]

  command.push('--auto') if params[:auto]
  command.push('--clear') if params[:clear]
  command.push('--commit').push(params[:commit]) unless params[:commit].nil?

  Helper::UninowSentryHelper.call_sentry_cli(command)
  UI.success("Successfully set commits for release: #{version}")
end