Skip to content

Commit

Permalink
Properly evaluate GITHUB_ACTOR in workflows (TheAlgorithms#647)
Browse files Browse the repository at this point in the history
  • Loading branch information
vil02 authored Jan 8, 2024
1 parent 61c417d commit cb3b21d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/directory_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
- uses: actions/setup-python@v4
- 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 "$[email protected]"
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
- name: Update DIRECTORY.md
run: |
Expand Down

0 comments on commit cb3b21d

Please sign in to comment.