Skip to content

git-actions/set-user

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

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

This action sets git user as github-actions[bot].

git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config user.name "github-actions[bot]"

This allows committing changes inside a workflow run.

Usage

steps:
  - uses: actions/checkout@v2
  - uses: git-actions/set-user@v1
  - run: |
      # Make changes
      git commit -am 'Add changes'
      git push

License

MIT