Method: Fastlane::Actions::FindTicketsAction.log

Defined in:
lib/fastlane/plugin/cerberus/actions/find_tickets_action.rb

.log(from:, to:, pretty:) ⇒ Object



27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/fastlane/plugin/cerberus/actions/find_tickets_action.rb', line 27

def self.log(from:, to:, pretty:)
  if to.to_s.empty? || from.to_s.empty?
    UI.important('Git Tickets: log(to:, from:) cannot be nil')
    return nil
  end

  other_action.changelog_from_git_commits(
    between: [from, to],
    pretty: pretty,
    merge_commit_filtering: :exclude_merges.to_s
  )
end