Sha256: e444a5fbb01bf3a020509047684dd5a72d8853bc37b47f52dc31b1e67f034892

Contents?: true

Size: 1.56 KB

Versions: 3

Compression:

Stored size: 1.56 KB

Contents

# frozen_string_literal: true

require "thor"

require_relative "../base"

module Neetob
  class CLI
    module Github
      module Labels
        class Update < Base
          attr_accessor :apps, :sandbox, :old_name, :new_name, :all_neeto_repos

          def initialize(apps, old_name, new_name, sandbox = false, all_neeto_repos = false)
            super()
            @apps = apps
            @sandbox = sandbox
            @old_name = old_name
            @new_name = new_name
            @all_neeto_repos = all_neeto_repos
          end

          def run
            check_for_apps_and_all_neeto_repos_option(apps, all_neeto_repos)
            matching_apps = find_all_matching_apps(apps, :github, sandbox, false, all_neeto_repos)
            matching_apps.each do |app|
              ui.info("\n Updating label for #{app} repo \n")
              begin
                update_label!(app, old_name, new_name)
              rescue StandardError => e
                ExceptionHandler.new(e).process
              end
            end
          end

          private

            def update_label!(app, old_name, new_name)
              client.label(app, new_name)
              ui.error("Label with name \"#{new_name}\" already exists.")
              nil
            rescue Octokit::NotFound
              client.update_label(app, old_name, { name: new_name })
              ui.success("Label \"#{old_name}\" updated to \"#{new_name}\" successfully")
            rescue StandardError => e
              ExceptionHandler.new(e).process
            end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
neetob-0.2.1 lib/neetob/cli/github/labels/update.rb
neetob-0.2.0 lib/neetob/cli/github/labels/update.rb
neetob-0.1.5 lib/neetob/cli/github/labels/update.rb