Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vanyauhalin/action-gh-bot
Configure Git with GitHub Actions Bot's profile
https://github.com/vanyauhalin/action-gh-bot
ci git github-actions github-bot
Last synced: 11 days ago
JSON representation
Configure Git with GitHub Actions Bot's profile
- Host: GitHub
- URL: https://github.com/vanyauhalin/action-gh-bot
- Owner: vanyauhalin
- License: mit
- Created: 2025-01-06T11:25:33.000Z (16 days ago)
- Default Branch: main
- Last Pushed: 2025-01-06T12:30:29.000Z (16 days ago)
- Last Synced: 2025-01-06T12:31:44.126Z (16 days ago)
- Topics: ci, git, github-actions, github-bot
- Language: Shell
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Setup GitHub Actions Bot
This GitHub Action configure Git with [GitHub Actions Bot]'s profile by adding a step to your workflow:
```yml
- name: Setup GitHub Actions Bot
uses: vanyauhalin/action-gh-bot@v0
```Under the hood, this action sets up the following Git configuration:
```sh
$ git config set --global user.name "github-actions[bot]"
$ git config set --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
```That is all.
## License
[MIT] (c) [Ivan Uhalin]
[GitHub Actions Bot]: https://api.github.com/users/github-actions%5Bbot%5D
[Ivan Uhalin]: https://github.com/vanyauhalin/
[MIT]: https://github.com/vanyauhalin/action-gh-bot/blob/main/LICENSE.txt/