From dbc9faa79d67ab86cbe68da68b2cd93a0335661a Mon Sep 17 00:00:00 2001 From: Ed Page Date: Wed, 23 Oct 2024 08:31:20 -0500 Subject: [PATCH] chore(ci): Initialize git for template update --- .github/workflows/template.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/template.yml b/.github/workflows/template.yml index 8f82caeb729..2dff9b3f7b6 100644 --- a/.github/workflows/template.yml +++ b/.github/workflows/template.yml @@ -29,6 +29,10 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 + - name: Configure git + run: | + git config --global user.name 'CI' + git config --global user.email '<>' - name: Fetch template run: "git remote add template ${{ env.TEMPLATE_URL }} && git fetch template ${{ env.TEMPLATE_BRANCH }}" - name: Merge template