Sha256: 28fdd7f017b210e2aca4aca302f83ab14f85bef12c8bd6d12d6a6a3191daaab3
Contents?: true
Size: 767 Bytes
Versions: 42
Compression:
Stored size: 767 Bytes
Contents
module Fastlane module Actions class LastGitCommitAction < Action def self.run(params) Actions.last_git_commit_dict end ##################################################### # @!group Documentation ##################################################### def self.description "Return last git commit hash, abbreviated commit hash, commit message and author" end def self.return_value "Returns the following dict: {commit_hash: \"commit hash\", abbreviated_commit_hash: \"abbreviated commit hash\" author: \"Author\", message: \"commit message\"}" end def self.author "ngutman" end def self.is_supported?(platform) true end end end end
Version data entries
42 entries across 42 versions & 1 rubygems