Sha256: 93f19f6ddc4593a6f280dc727840d31ebfdf99efeef2fb9cc4024e97ef1ab8dc

Contents?: true

Size: 1.39 KB

Versions: 19

Compression:

Stored size: 1.39 KB

Contents

module Fastlane
  module Actions
    module SharedValues
      GIT_BRANCH_ENV_VARS = %w(GIT_BRANCH BRANCH_NAME TRAVIS_BRANCH BITRISE_GIT_BRANCH CI_BUILD_REF_NAME CI_COMMIT_REF_NAME WERCKER_GIT_BRANCH BUILDKITE_BRANCH APPCENTER_BRANCH).freeze
    end

    class GitBranchAction < Action
      def self.run(params)
        env_name = SharedValues::GIT_BRANCH_ENV_VARS.find { |env_var| FastlaneCore::Env.truthy?(env_var) }
        ENV.fetch(env_name.to_s) { `git symbolic-ref HEAD --short 2>/dev/null`.strip }
      end

      #####################################################
      # @!group Documentation
      #####################################################

      def self.description
        "Returns the name of the current git branch, possibly as managed by CI ENV vars"
      end

      def self.details
        "If no branch could be found, this action will return an empty string"
      end

      def self.available_options
        []
      end

      def self.output
        [
          ['GIT_BRANCH_ENV_VARS', 'The git branch environment variables']
        ]
      end

      def self.authors
        ["KrauseFx"]
      end

      def self.is_supported?(platform)
        true
      end

      def self.example_code
        [
          'git_branch'
        ]
      end

      def self.return_type
        :string
      end

      def self.category
        :source_control
      end
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
fastlane-2.151.2 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.151.1 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.151.0 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.150.3 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.150.2 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.150.1 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.150.0 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.150.0.rc7 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.150.0.rc6 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.150.0.rc5 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.150.0.rc4 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.150.0.rc3 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.150.0.rc2 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.150.0.rc1 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.149.1 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.149.0 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.148.1 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.148.0 fastlane/lib/fastlane/actions/git_branch.rb
fastlane-2.147.0 fastlane/lib/fastlane/actions/git_branch.rb