This commit is contained in:
Jesse Duffield 2022-05-11 23:07:04 +10:00
parent cd744ad699
commit 430467711b

View file

@ -16,3 +16,12 @@ jobs:
with:
token: ${{ secrets.SPONSORS_TOKEN }}
file: 'README.md'
- name: Commit and push if changed
run: |-
git diff
git config --global user.email "actions@users.noreply.github.com"
git config --global user.name "README-bot"
git add README.md
git commit -m "Updated README.md" || exit 0
git push