last_git_commit
Return last git commit hash, abbreviated commit hash, commit message and author
last_git_commit | |
---|---|
Supported platforms | ios, android, mac |
Author | @ngutman |
Returns | Returns the following dict: |
1 Example
commit = last_git_commit
pilot(changelog: commit[:message]) # message of commit
author = commit[:author] # author of the commit
author_email = commit[:author_email] # email of the author of the commit
hash = commit[:commit_hash] # long sha of commit
short_hash = commit[:abbreviated_commit_hash] # short sha of commit
Documentation
To show the documentation in your terminal, run
fastlane action last_git_commit
CLI
It is recommended to add the above action into your Fastfile
, however sometimes you might want to run one-offs. To do so, you can run the following command from your terminal
fastlane run last_git_commit
To pass parameters, make use of the :
symbol, for example
fastlane run last_git_commit parameter1:"value1" parameter2:"value2"
It's important to note that the CLI supports primitive types like integers, floats, booleans, and strings. Arrays can be passed as a comma delimited string (e.g. param:"1,2,3"
). Hashes are not currently supported.
It is recommended to add all fastlane actions you use to your Fastfile
.
Source code
This action, just like the rest of fastlane, is fully open source, view the source code on GitHub