Class: Fastlane::Actions::EnsureGitBranchAction

Inherits:
Fastlane::Action show all
Defined in:
lib/fastlane/actions/ensure_git_branch.rb

Overview

Raises an exception and stop the lane execution if the repo is not on a specific branch

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, authors, details, method_missing, other_action, return_value, sh, step_text

Class Method Details

.authorObject



40
41
42
# File 'lib/fastlane/actions/ensure_git_branch.rb', line 40

def self.author
  ['dbachrach', 'Liquidsoul']
end

.available_optionsObject



26
27
28
29
30
31
32
33
34
# File 'lib/fastlane/actions/ensure_git_branch.rb', line 26

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :branch,
                                 env_name: "FL_ENSURE_GIT_BRANCH_NAME",
                                 description: "The branch that should be checked for. String that can be either the full name of the branch or a regex to match",
                                 is_string: true,
                                 default_value: 'master')
  ]
end

.descriptionObject



22
23
24
# File 'lib/fastlane/actions/ensure_git_branch.rb', line 22

def self.description
  "Raises an exception if not on a specific git branch"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


44
45
46
# File 'lib/fastlane/actions/ensure_git_branch.rb', line 44

def self.is_supported?(platform)
  true
end

.outputObject



36
37
38
# File 'lib/fastlane/actions/ensure_git_branch.rb', line 36

def self.output
  []
end

.run(params) ⇒ Object



8
9
10
11
12
13
14
15
16
# File 'lib/fastlane/actions/ensure_git_branch.rb', line 8

def self.run(params)
  branch = params[:branch]
  branch_expr = /#{branch}/
  if Actions.git_branch =~ branch_expr
    UI.success("Git branch match `#{branch}`, all good! 💪")
  else
    UI.user_error!("Git is not on a branch matching `#{branch}`. Current branch is `#{Actions.git_branch}`! Please ensure the repo is checked out to the correct branch.")
  end
end