Class: Fastlane::Actions::LastAncestorGitTagAction
- Inherits:
-
Action
- Object
- Action
- Fastlane::Actions::LastAncestorGitTagAction
- Defined in:
- lib/fastlane/plugin/apadmi_grout/actions/last_ancestor_git_tag.rb
Overview
Get the most recent git tag which is on an ancestor commit of HEAD
Class Method Summary collapse
- .authors ⇒ Object
- .available_options ⇒ Object
- .description ⇒ Object
- .details ⇒ Object
- .is_supported?(_platform) ⇒ Boolean
- .run(params) ⇒ Object
Class Method Details
.authors ⇒ Object
14 15 16 |
# File 'lib/fastlane/plugin/apadmi_grout/actions/last_ancestor_git_tag.rb', line 14 def self. ["samdc@apadmi.com"] end |
.available_options ⇒ Object
26 27 28 29 30 31 32 33 34 35 |
# File 'lib/fastlane/plugin/apadmi_grout/actions/last_ancestor_git_tag.rb', line 26 def self. [ FastlaneCore::ConfigItem.new(key: :pattern, description: %(Pattern to filter tags when looking for last one. Limit tags to ones matching given shell glob. If pattern lacks ?, *, or [, * at the end is implied), default_value: nil, optional: true) ] end |
.description ⇒ Object
18 19 20 |
# File 'lib/fastlane/plugin/apadmi_grout/actions/last_ancestor_git_tag.rb', line 18 def self.description "Get the most recent git tag which is on an ancestor commit of HEAD" end |
.details ⇒ Object
22 23 24 |
# File 'lib/fastlane/plugin/apadmi_grout/actions/last_ancestor_git_tag.rb', line 22 def self.details "Designed to mimic https://docs.fastlane.tools/actions/last_git_tag/ except only include tags that are on ancestor commits" end |
.is_supported?(_platform) ⇒ Boolean
37 38 39 |
# File 'lib/fastlane/plugin/apadmi_grout/actions/last_ancestor_git_tag.rb', line 37 def self.is_supported?(_platform) true end |