Sha256: 486c251adf3dc40cb5801abf81ea7f21f0fa4c0116a4ba56a9676f4a48b09fe4

Contents?: true

Size: 1.68 KB

Versions: 106

Compression:

Stored size: 1.68 KB

Contents

module Fastlane
  module Actions
    module SharedValues
      GIT_REPO_WAS_CLEAN_ON_START = :GIT_REPO_WAS_CLEAN_ON_START
    end

    # Raises an exception and stop the lane execution if the repo is not in a clean state
    class EnsureGitStatusCleanAction < Action
      def self.run(params)
        repo_clean = `git status --porcelain`.empty?

        if repo_clean
          UI.success('Git status is clean, all good! 💪')
          Actions.lane_context[SharedValues::GIT_REPO_WAS_CLEAN_ON_START] = true
        else
          UI.user_error!("Git repository is dirty! Please ensure the repo is in a clean state by commiting/stashing/discarding all changes first.")
        end
      end

      def self.description
        "Raises an exception if there are uncommited git changes"
      end

      def self.details
        [
          'A sanity check to make sure you are working in a repo that is clean. Especially',
          'useful to put at the beginning of your Fastfile in the `before_all` block, if',
          'some of your other actions will touch your filesystem, do things to your git repo,',
          'or just as a general reminder to save your work. Also needed as a prerequisite for',
          'some other actions like `reset_git_repo`.'
        ].join("\n")
      end

      def self.output
        [
          ['GIT_REPO_WAS_CLEAN_ON_START', 'Stores the fact that the git repo was clean at some point']
        ]
      end

      def self.author
        "lmirosevic"
      end

      def self.example_code
        ['ensure_git_status_clean']
      end

      def self.category
        :source_control
      end

      def self.is_supported?(platform)
        true
      end
    end
  end
end

Version data entries

106 entries across 106 versions & 1 rubygems

Version Path
fastlane-2.26.0.beta.20170405010026 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.26.0.beta.20170404010022 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.25.0 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.25.0.beta.20170403010018 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.25.0.beta.20170402010035 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.25.0.beta.20170401010021 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.25.0.beta.20170331010039 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.25.0.beta.20170330225747 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.24.0 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.24.0.beta.20170330010023 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.24.0.beta.20170329010023 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.24.0.beta.20170328010037 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.24.0.beta.20170327010009 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.24.0.beta.20170326010023 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.24.0.beta.20170325010032 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.23.0 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.23.0.beta.20170322010036 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.22.0 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.22.0.beta.20170321010023 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
fastlane-2.21.0 fastlane/lib/fastlane/actions/ensure_git_status_clean.rb