Skip to content

Commit cb3b21d

Browse files
authored
Properly evaluate GITHUB_ACTOR in workflows (#647)
1 parent 61c417d commit cb3b21d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/directory_workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
- uses: actions/setup-python@v4
1515
- name: Setup Git Specs
1616
run: |
17-
git config --global user.name github-actions
18-
git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com'
17+
git config --global user.name "$GITHUB_ACTOR"
18+
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
1919
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
2020
- name: Update DIRECTORY.md
2121
run: |

0 commit comments

Comments
 (0)