8 lines
285 B
YAML
8 lines
285 B
YAML
- name: Commit and Push changes
|
|
run: |
|
|
git config --local user.email "action@gitea.com"
|
|
git config --local user.name "Gitea Action"
|
|
git add README.md
|
|
git commit -m "Update profile stats" || echo "No changes to commit"
|
|
git push
|