From 49cf2ed4b6bc95df34beee757a48b2f0cf92c008 Mon Sep 17 00:00:00 2001 From: Firoz Ahmed Date: Tue, 2 Jul 2024 19:42:50 +0530 Subject: [PATCH] Update python-app.yml --- .github/workflows/python-app.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 4699739..4f42014 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -27,3 +27,10 @@ jobs: - name: Run app.py run: | python app.py + - name: Commit changes + run: | + git config --global user.name 'GitHub Actions Bot' + git config --global user.email '' + git add README.md # Replace README.md with the files you want to commit + git commit -m "Update README.md with new file additions" # Adjust commit message as needed + git push