Files
.profile/.gitea/workflows/update.yaml
Nathan Falvey b25130c615
Some checks failed
Update Profile Stats / build (push) Failing after 13m55s
Implement Gitea Action to update README with dynamic stats
2026-02-27 18:56:53 +00:00

29 lines
780 B
YAML

name: Update Profile Stats
on:
schedule:
- cron: '0 * * * *' # Runs every hour
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Update README file
run: python3 update_profile.py
- name: Commit and Push
run: |
git config --local user.email "action@gitea.com"
git config --local user.name "Gitea Action"
git add README.md
# Only commit if there are actual changes to avoid errors
git diff --quiet && git diff --staged --quiet || (git commit -m "Update profile stats" && git push)