class Dependabot::PullRequestCreator::Azure

def create_commit

def create_commit
  author = author_details&.slice(:name, :email, :date)
  author = nil unless author&.any?
  azure_client_for_source.create_commit(
    branch_name,
    base_commit,
    commit_message,
    files,
    author
  )
end