From da21bf588ed83198af9d58e37eb1b3b46d662465 Mon Sep 17 00:00:00 2001 From: Noah Mason Date: Wed, 5 Jun 2024 14:49:14 -0400 Subject: [PATCH] Configures a git user in the workplace scope when running the test action. --- .github/workflows/test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4b57304..889c151 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,6 +28,13 @@ jobs: with: node-version: ${{ env.NODE_VERSION }} + # Config a dummy git user for use in the repo initialization. + - name: Config Git User + id: config_git_user + run: | + git config user.name "Test User" + git config user.email "test@dreamsicle.io" + # Installs npm and composer dependencies. - name: Install id: install