Sha256: 96e0134a9c0a26dab85c522629164234c6f7a3a934f81cee37a935fd02faf88e

Contents?: true

Size: 1.62 KB

Versions: 6

Compression:

Stored size: 1.62 KB

Contents

require 'thor'
require 'gitx'
require 'gitx/cli/base_command'
require 'gitx/cli/update_command'
require 'gitx/cli/cleanup_command'
require 'gitx/github'

module Gitx
  module Cli
    class ReleaseCommand < BaseCommand
      include Gitx::Github

      desc 'release', 'release the current branch to production'
      method_option :cleanup, type: :boolean, desc: 'cleanup merged branches after release'
      def release(branch = nil)
        return unless yes?("Release #{current_branch.name} to production? (y/n)", :green)

        branch ||= current_branch.name
        assert_not_protected_branch!(branch, 'release')
        checkout_branch(branch)
        execute_command(UpdateCommand, :update)

        pull_request = find_or_create_pull_request(branch)
        return unless confirm_branch_status?(branch)

        checkout_branch Gitx::BASE_BRANCH
        run_cmd "git pull origin #{Gitx::BASE_BRANCH}"
        run_cmd %Q(git merge --no-ff -m "[gitx] Releasing #{branch} to #{Gitx::BASE_BRANCH} (Pull request ##{pull_request.number})" #{branch})
        run_cmd 'git push origin HEAD'

        after_release
      end

      private

      def confirm_branch_status?(branch)
        status = branch_status(branch)
        if status == 'success'
          true
        else
          yes?("Branch status is currently: #{status}.  Proceed with release? (y/n)", :red)
        end
      end

      def after_release
        after_release_scripts = config.after_release_scripts.dup
        after_release_scripts << 'git cleanup' if options[:cleanup]
        after_release_scripts.each do |cmd|
          run_cmd cmd
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gitx-2.16.0 lib/gitx/cli/release_command.rb
gitx-2.16.0.ci.89.1 lib/gitx/cli/release_command.rb
gitx-2.16.0.pre.ci.88.1 lib/gitx/cli/release_command.rb
gitx-2.16.0.pre.ci.85.1 lib/gitx/cli/release_command.rb
gitx-2.16.0.pre lib/gitx/cli/release_command.rb
gitx-2.16.0.pre.ci.81.1 lib/gitx/cli/release_command.rb