From 415b2faef3dfb0d214f66bac8ce78be41ac8e97f Mon Sep 17 00:00:00 2001 From: KeisukeYamashita <19yamashita15@gmail.com> Date: Thu, 16 Jan 2025 19:23:41 +0100 Subject: [PATCH] fix: add missing email config in git Signed-off-by: KeisukeYamashita <19yamashita15@gmail.com> --- .github/workflows/stage.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/stage.yml b/.github/workflows/stage.yml index a71b59c16b..242b5b2b2e 100644 --- a/.github/workflows/stage.yml +++ b/.github/workflows/stage.yml @@ -9,10 +9,9 @@ jobs: if: github.ref == 'refs/heads/main' steps: - name: git config - env: - GH_APP_USER: ${{ vars.GH_APP_USER }} run: | - git config --global user.name $GH_APP_USER + git config --global user.name ${{ vars.GH_APP_USER }} + git config --global user.email ${{ vars.GH_APP_ID }}+${{ vars.GH_APP_USER }}[bot]@users.noreply.github.com git config --global pull.rebase false - uses: actions/create-github-app-token@v1 id: app-token