class Dependabot::Clients::GitlabWithRetries

def file_action(file)

def file_action(file)
  if file.operation == Dependabot::DependencyFile::Operation::DELETE
    "delete"
  elsif file.operation == Dependabot::DependencyFile::Operation::CREATE
    "create"
  else
    "update"
  end
end