We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9efb79c commit 3c10f7aCopy full SHA for 3c10f7a
1 file changed
.github/workflows/test_generate_mads.yml
@@ -27,3 +27,14 @@ jobs:
27
run: |
28
mkdir -p mad
29
python3 csv2mad.py ArcadeDatabase_CSV/ArcadeDatabase.csv
30
+
31
+ - name: Commit updated MAD files
32
+ run: |
33
+ git config --global user.name "The CI/CD Bot"
34
+ git config --global user.email "theypsilon@gmail.com"
35
+ git add mad/
36
+ if git diff --cached --quiet; then
37
+ echo "No changes to commit"
38
+ else
39
+ git commit -m "Update generated MAD files"
40
+ git push
0 commit comments