stop overwritting gitconfig

Signed-off-by: Casey Lee <cplee@nektos.com>
This commit is contained in:
Casey Lee 2020-02-20 21:01:12 -05:00
parent 58731e8d9b
commit e371fa8c49
No known key found for this signature in database
GPG key ID: 1899120ECD0A1784

View file

@ -13,7 +13,6 @@ import (
"github.com/stretchr/testify/require"
)
func TestFindGitSlug(t *testing.T) {
assert := assert.New(t)
@ -147,8 +146,10 @@ func TestGitFindRef(t *testing.T) {
}
func gitConfig() {
_ = gitCmd("config","--global","user.email","test@test.com")
_ = gitCmd("config","--global","user.name","Unit Test")
if os.Getenv("GITHUB_ACTIONS") == "true" {
_ = gitCmd("config", "--global", "user.email", "test@test.com")
_ = gitCmd("config", "--global", "user.name", "Unit Test")
}
}
func gitCmd(args ...string) error {