From 3c10f7aee8b2ea6ef742c4e675088b6c4654ebec Mon Sep 17 00:00:00 2001 From: Toya <82502378+Toryalai1@users.noreply.github.com> Date: Thu, 12 Jun 2025 15:33:57 +0200 Subject: [PATCH] push the mad files back to branch --- .github/workflows/test_generate_mads.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/test_generate_mads.yml b/.github/workflows/test_generate_mads.yml index 6837205..5948e67 100644 --- a/.github/workflows/test_generate_mads.yml +++ b/.github/workflows/test_generate_mads.yml @@ -27,3 +27,14 @@ jobs: run: | mkdir -p mad python3 csv2mad.py ArcadeDatabase_CSV/ArcadeDatabase.csv + + - name: Commit updated MAD files + run: | + git config --global user.name "The CI/CD Bot" + git config --global user.email "theypsilon@gmail.com" + git add mad/ + if git diff --cached --quiet; then + echo "No changes to commit" + else + git commit -m "Update generated MAD files" + git push