Setup GitHub Actions Bot
ActionsConfigures Git user.name and user.email for GitHub Actions bot for correct attribution of commits and operations
v0.1
LatestBy cli-stuff
Tags
(2)This Action configures git
so that when you make commits in CI, they will be authored by github-actions[bot]
(github-actions[bot]@users.noreply.github.com)
Here's a basic example of how to use this action in your workflow:
name: Example Workflow
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Configure Git
uses: cli-stuff/setup-github-actions-bot
- name: Commit changes
run: |
echo "New content" >> new_file.txt
git commit -am "Add new file"
This project is licensed under Unlicense - see the LICENSE file for details.
Setup GitHub Actions Bot is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.