class Travis::CLI::Setup::Releases

def github

def github
  @github ||= begin
    load_gh
    Tools::Github.new(session.config['github']) do |g|
      g.drop_token    = false
      g.github_token  = github_token
      g.debug         = proc { |log| debug(log) }
      g.after_tokens  = proc { g.explode = true and error('no suitable github token found') }
      g.scopes        = ['repo']
      g.note          = "automatic releases for #{repository.slug}"
    end
  end
end