8000 GitHub - rlespinasse/git-commit-data-action: Action to expose git commit info
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

rlespinasse/git-commit-data-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Git commit data action

This action exposes git commit data.

  • GIT_COMMIT_SHA expose commit hash
  • GIT_COMMIT_SHORT_SHA expose abbreviated commit hash
  • GIT_COMMIT_AUTHOR expose Author name <author@email.tld>
  • GIT_COMMIT_AUTHOR_NAME expose Author name
  • GIT_COMMIT_AUTHOR_EMAIL expose author@email.tld
  • GIT_COMMIT_COMMITTER expose Committer name <committer@email.tld>
  • GIT_COMMIT_COMMITTER_NAME expose Committer name
  • GIT_COMMIT_COMMITTER_EMAIL expose committer@email.tld
  • GIT_COMMIT_MESSAGE_SUBJECT expose The first line of the commit message
  • GIT_COMMIT_MESSAGE_SUBJECT_SANITIZED expose the-first-line-of-the-commit-message-in-sanitized-way
  • GIT_COMMIT_MESSAGE_BODY expose The body of the commit message

Exposed environment variables

- name: Expose git commit data
  uses: rlespinasse/git-commit-data-action@v1

- name: Print git commit data
  run: |
    echo "Get commit info"
    echo " - ${{ env.GIT_COMMIT_SHA }}"
    echo " - ${{ env.GIT_COMMIT_SHORT_SHA }}"
    echo "Get author info"
    echo " - ${{ env.GIT_COMMIT_AUTHOR }}"
    echo " - ${{ env.GIT_COMMIT_AUTHOR_NAME }}"
    echo " - ${{ env.GIT_COMMIT_AUTHOR_EMAIL }}"
    echo "Get committer info"
    echo " - ${{ env.GIT_COMMIT_COMMITTER }}"
    echo " - ${{ env.GIT_COMMIT_COMMITTER_NAME }}"
    echo " - ${{ env.GIT_COMMIT_COMMITTER_EMAIL }}"
    echo "Get message info"
    echo " - ${{ env.GIT_COMMIT_MESSAGE_SUBJECT }}"
    echo " - ${{ env.GIT_COMMIT_MESSAGE_SUBJECT_SANITIZED }}"
    echo " - ${{ env.GIT_COMMIT_MESSAGE_BODY }}"

Need other commit data

Feel free to contribute. Check out the developer guide

About

Action to expose git commit info

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Sponsor this project

< 432F div class="d-flex mb-3">
 

Contributors 4

  •  
  •  
  •  
  •  

Languages

0