Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/peter-bread/setup-github-actions-bot
https://github.com/peter-bread/setup-github-actions-bot
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/peter-bread/setup-github-actions-bot
- Owner: peter-bread
- License: mit
- Created: 2024-06-11T04:13:58.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-11-05T18:50:27.000Z (3 months ago)
- Last Synced: 2024-11-05T19:37:29.320Z (3 months ago)
- Size: 1.38 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# setup-github-actions-bot
A GitHub Action to configure git `user.name` and `user.email` to use `github-actions[bot]`.
This action does the following:
- set git `user.name` to `github-actions[bot]`
- set git `user.email` to `41898282+github-actions[bot]@users.noreply.github.com`This (for now at least) is a very simple workflow. It is mainly useful so you
don't need to remember the github actions bot credentials.## Usage
```yaml
- name: checkout repository
uses: actions/checkout@v4- name: configure github actions bot
uses: peter-bread/setup-github-actions-bot@v2
```