From 31f20026549a3d131d22a8b6c8e1fa7ad22a8a9c Mon Sep 17 00:00:00 2001 From: zomars Date: Tue, 11 Apr 2023 11:38:18 -0700 Subject: [PATCH] Update lockfile.yml --- .github/workflows/lockfile.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lockfile.yml b/.github/workflows/lockfile.yml index aa1bf165a3..640ace3587 100644 --- a/.github/workflows/lockfile.yml +++ b/.github/workflows/lockfile.yml @@ -14,11 +14,12 @@ jobs: ref: main fetch-depth: 0 token: ${{ secrets.GH_ACCESS_TOKEN }} - - run: ./git-setup.sh website auth api console + - run: | + git config --global user.email "${GITHUB_ACTOR}@me.com" + git config --global user.name "${GITHUB_ACTOR}" + ./git-setup.sh website auth api console - uses: ./.github/actions/yarn-install - name: Commit new lockfile if updated run: | - git config --global user.email "${GITHUB_ACTOR}" - git config --global user.name "${GITHUB_ACTOR}@users.noreply.github.com" git commit -am "Update yarn.lock" git push