class Travis::Tools::Github

def acceptable?(token)

def acceptable?(token)
  return true unless check_token
  gh = GH.with(token:)
  gh['user']
  true
rescue GH::Error => e
  debug "token is not acceptable: #{gh_error(e)}"
  false
end