Skip to content

Commit

Permalink
fix: properly evaluate GITHUB_ACTOR
Browse files Browse the repository at this point in the history
  • Loading branch information
vil02 committed Jan 5, 2024
1 parent 3a1724d commit a517d25
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/directory_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: build_directory_md
on:
push:
branches: [master]
workflow_dispatch:

jobs:
MainSequence:
Expand All @@ -15,7 +16,8 @@ jobs:
- 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.email "[email protected]"
git config --global --list
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 a517d25

Please sign in to comment.