Skip to content

Commit a517d25

Browse files
committed
fix: properly evaluate GITHUB_ACTOR
1 parent 3a1724d commit a517d25

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/directory_workflow.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: build_directory_md
22
on:
33
push:
44
branches: [master]
5+
workflow_dispatch:
56

67
jobs:
78
MainSequence:
@@ -15,7 +16,8 @@ jobs:
1516
- name: Setup Git Specs
1617
run: |
1718
git config --global user.name github-actions
18-
git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com.'
19+
git config --global user.email "[email protected]"
20+
git config --global --list
1921
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com./$GITHUB_REPOSITORY
2022
- name: Update DIRECTORY.md
2123
run: |

0 commit comments

Comments
 (0)