We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
GITHUB_ACTOR
git config
1 parent 9caf478 commit 71d6cfeCopy full SHA for 71d6cfe
.github/workflows/directory_writer.yml
@@ -15,8 +15,8 @@ jobs:
15
- name: Write DIRECTORY.md
16
run: |
17
scripts/build_directory_md.py 2>&1 | tee DIRECTORY.md
18
- git config --global user.name github-actions
19
- git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com'
+ git config --global user.name "$GITHUB_ACTOR"
+ git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
20
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
21
- name: Update DIRECTORY.md
22
0 commit comments