Skip to content

Update README.md

Update README.md #64

Workflow file for this run

name: Sync README.md
on:
push:
paths:
- README.md
jobs:
sync-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Sync README.md to GUGUbot
run: |
cp README.md GUGUbot/README.md
git config --global user.name "GUGUbot"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add GUGUbot/README.md
if git diff --cached --quiet; then
echo "No changes to commit"
else
git commit -m "Sync README.md from root to GUGUbot"
git push
fi