From b7d692cc0fdc52c748c1b00cb162f69c417c23e9 Mon Sep 17 00:00:00 2001 From: Randark Date: Tue, 1 Oct 2024 21:23:44 +0800 Subject: [PATCH] update --- .github/workflows/Registration.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/Registration.yml b/.github/workflows/Registration.yml index eeb3654..613f7a2 100644 --- a/.github/workflows/Registration.yml +++ b/.github/workflows/Registration.yml @@ -41,3 +41,12 @@ jobs: run: | echo "The script exit code was: ${{steps.registration.outputs.exit_code}}" echo "The script output was: ${{steps.registration.outputs.result}}" + - name: Commit changes + run: | + git config user.name "GitHub Actions" + git config user.email "actions@github.com" + git add . + git commit -m "Update files from GitHub Actions" || echo "No changes to commit" + - name: Push changes + run: | + git push origin HEAD:main \ No newline at end of file