From 14bd0d547a94ae224fff035b7f9750f710f7949f Mon Sep 17 00:00:00 2001 From: Cristian Le Date: Thu, 14 Dec 2023 22:07:01 +0100 Subject: [PATCH] Temporary fix git configuration Signed-off-by: Cristian Le --- .github/workflows/step_test.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/step_test.yaml b/.github/workflows/step_test.yaml index ed73fbd..c85e816 100644 --- a/.github/workflows/step_test.yaml +++ b/.github/workflows/step_test.yaml @@ -23,7 +23,10 @@ jobs: fetch-depth: 0 # Note: Proper solution is: https://github.com/actions/runner/issues/2033#issuecomment-1598547465 - name: Temporary fix for git permissions - run: git config --global --add safe.directory "*" + run: | + git config --global --add safe.directory "*" + git config --global user.email "bot@github.com" + git config --global user.name "GitHub Actions Bot" - uses: actions/setup-python@v5 with: python-version: 3.x