From 8edcd8b7187a7ef5eb7eedac612499cf13ccb1ab Mon Sep 17 00:00:00 2001 From: --global Date: Wed, 25 Nov 2020 20:26:32 +0100 Subject: [PATCH] Debug failed Workflow run --- tests/git-auto-commit.bats | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/tests/git-auto-commit.bats b/tests/git-auto-commit.bats index 922b7db..8c9cc2a 100644 --- a/tests/git-auto-commit.bats +++ b/tests/git-auto-commit.bats @@ -62,10 +62,13 @@ _setup_local_repository() { cd "${FAKE_LOCAL_REPOSITORY}"; # Configure Git - if [[ -z $(git config user.name) ]]; then - git config --global user.name "Test Suite" - git config --global user.email "test@github.com" - fi + # if [[ -z $(git config user.name) ]]; then + # git config --global user.name "Test Suite" + # git config --global user.email "test@github.com" + # fi + + git config --global user.name "Test Suite" + git config --global user.email "test@github.com" } # Run the main code related to this GitHub Action