From 58180ff4635ab0d3e0ce6a1ffd1073dda978cc98 Mon Sep 17 00:00:00 2001 From: Nathan Falvey Date: Fri, 27 Feb 2026 22:44:19 +0000 Subject: [PATCH] Fix case sensitivity in README file references for consistency --- .gitea/workflows/update.yaml | 2 +- update_profile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/update.yaml b/.gitea/workflows/update.yaml index 8213998..45ca0fc 100644 --- a/.gitea/workflows/update.yaml +++ b/.gitea/workflows/update.yaml @@ -23,5 +23,5 @@ jobs: run: | git config --local user.email "action@gitea.com" git config --local user.name "Gitea Action" - git add README.MD + git add README.md git diff --quiet && git diff --staged --quiet || (git commit -m "Update profile stats" && git push) \ No newline at end of file diff --git a/update_profile.py b/update_profile.py index c3f9f8b..a883846 100644 --- a/update_profile.py +++ b/update_profile.py @@ -7,7 +7,7 @@ def generate_stats(): return f"āœ… My Gitea instance is alive and well!\nšŸ•’ Last update: {now}." def main(): - readme_path = "README.MD" + readme_path = "README.md" if not os.path.exists(readme_path): print(f"{readme_path} not found!")