Method: Datadog::CI::Git::LocalRepository.git_commit_message

Defined in:
lib/datadog/ci/git/local_repository.rb

.git_commit_messageObject



144
145
146
147
148
149
# File 'lib/datadog/ci/git/local_repository.rb', line 144

def self.git_commit_message
  exec_git_command("git log -n 1 --format=%B")
rescue => e
  log_failure(e, "git commit message")
  nil
end