From cf745640d41a29409a432de8c67d7bceb8a2d80f Mon Sep 17 00:00:00 2001 From: YaoSiQian Date: Fri, 18 Aug 2023 18:13:25 +0000 Subject: [PATCH] Fix email format --- .github/workflows/push.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index d147ff0..1aa553d 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -26,8 +26,8 @@ jobs: git submodule update --remote - name: Push changes run: | - git config user.name github-actions - git config user.email github-actions@github.com + git config --global user.email "github-actions@github.com" + git config --global user.name "github-actions" cd data_export git add . git commit -m "Update: ${{ github.event.head_commit.message }}"