Files
.profile/.gitea/workflows/update.yaml
Workflow config file is invalid. Please check your config file: yaml: line 2: mapping values are not allowed in this context

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