From 81622cc8d7494b8b3dc15765618677cd27f2741d Mon Sep 17 00:00:00 2001 From: vil02 Date: Sat, 20 Jan 2024 11:42:54 +0100 Subject: [PATCH] fix: use `GITHUB_ACTOR` in `git config` --- .github/workflows/directory_workflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/directory_workflow.yml b/.github/workflows/directory_workflow.yml index 2306384..0492373 100644 --- a/.github/workflows/directory_workflow.yml +++ b/.github/workflows/directory_workflow.yml @@ -10,8 +10,8 @@ jobs: - uses: actions/setup-python@v2 - name: Setup Git Specs run: | - git config --global user.name github-actions - git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com' + git config --global user.name "$GITHUB_ACTOR" + git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com" git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY - name: Update DIRECTORY.md shell: python