Skip to content

Commit 51b0b36

Browse files
authored
Merge pull request #84 from vil02/properly_evaluate_GITHUB_ACTOR
Properly evaluate `GITHUB_ACTOR`
2 parents 2f720d1 + 81622cc commit 51b0b36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/directory_workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
- uses: actions/setup-python@v2
1111
- name: Setup Git Specs
1212
run: |
13-
git config --global user.name github-actions
14-
git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com'
13+
git config --global user.name "$GITHUB_ACTOR"
14+
git config --global user.email "$[email protected]"
1515
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
1616
- name: Update DIRECTORY.md
1717
shell: python

0 commit comments

Comments
 (0)