fix: 🐛 Added git pull functionality to workflow.

Added a git pull function to my workflow to allow repo synchronosity.
This commit is contained in:
2026-03-07 14:17:47 +00:00
parent e94a65726a
commit d2b9e66c10

View File

@@ -23,5 +23,6 @@ jobs:
run: |
git config --local user.email "action@gitea.com"
git config --local user.name "Gitea Action"
git pull
git add README.md
git diff --quiet && git diff --staged --quiet || (git commit -m "Update profile stats" && git push)