Update Rating Manual #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Rating Manual | |
on: workflow_dispatch | |
jobs: | |
update_rating_manual: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Repository | |
uses: actions/checkout@v4 | |
- name: Update Rating List | |
run: | | |
echo "Update Rating Manual" | |
chmod +x ./bigeloLin | |
./bigeloLin | |
echo "Updated Rating List!" | |
- name: Commit Changes | |
run: | | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | |
git add 'README.md' | |
git commit -m 'Manual Rating Update' | |
git push |