From e7dc82d8cc3fdf5f2bd62044056cde98a6c2e21f Mon Sep 17 00:00:00 2001 From: "sammy.huang" Date: Wed, 17 Jan 2024 16:12:54 +0800 Subject: [PATCH] enhance: [skip e2e]to workaround the error "HOME not set" (#30047) issue: #30046 to workaround the error "HOME not set" happened in self hosted runner solution from https://alexanderhose.com/aws-codecommit-with-instance-role-and-user-data/ Signed-off-by: Sammy Huang --- .github/workflows/all-contributors.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/all-contributors.yaml b/.github/workflows/all-contributors.yaml index 29c183bf35..71763b56d2 100644 --- a/.github/workflows/all-contributors.yaml +++ b/.github/workflows/all-contributors.yaml @@ -57,8 +57,8 @@ jobs: - name: commit code run: | pwd - git config --global user.email "sre-ci-robot@zilliz.com" - git config --global user.name "sre-ci-robot" + git config --system user.email "sre-ci-robot@zilliz.com" + git config --system user.name "sre-ci-robot" git add -u git diff-index --cached --quiet HEAD || (git commit -s -m 'Update all contributors' && git push)