Class: Fastlane::Actions::GitBranchAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary
collapse
action_name, author, deprecated_notes, lane_context, method_missing, other_action, return_value, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.authors ⇒ Object
33
34
35
|
# File 'fastlane/lib/fastlane/actions/git_branch.rb', line 33
def self.authors
["KrauseFx"]
end
|
.available_options ⇒ Object
25
26
27
|
# File 'fastlane/lib/fastlane/actions/git_branch.rb', line 25
def self.available_options
[]
end
|
.category ⇒ Object
51
52
53
|
# File 'fastlane/lib/fastlane/actions/git_branch.rb', line 51
def self.category
:source_control
end
|
.description ⇒ Object
17
18
19
|
# File 'fastlane/lib/fastlane/actions/git_branch.rb', line 17
def self.description
"Returns the name of the current git branch, possibly as managed by CI ENV vars"
end
|
.details ⇒ Object
21
22
23
|
# File 'fastlane/lib/fastlane/actions/git_branch.rb', line 21
def self.details
"If no branch could be found, this action will return an empty string"
end
|
.example_code ⇒ Object
41
42
43
44
45
|
# File 'fastlane/lib/fastlane/actions/git_branch.rb', line 41
def self.example_code
[
'git_branch'
]
end
|
.is_supported?(platform) ⇒ Boolean
37
38
39
|
# File 'fastlane/lib/fastlane/actions/git_branch.rb', line 37
def self.is_supported?(platform)
true
end
|
.output ⇒ Object
29
30
31
|
# File 'fastlane/lib/fastlane/actions/git_branch.rb', line 29
def self.output
[]
end
|
.return_type ⇒ Object
47
48
49
|
# File 'fastlane/lib/fastlane/actions/git_branch.rb', line 47
def self.return_type
:string
end
|
.run(params) ⇒ Object
8
9
10
11
|
# File 'fastlane/lib/fastlane/actions/git_branch.rb', line 8
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
|