We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
GITHUB_ACTOR
git config
1 parent 67ff979 commit aeb0f14Copy full SHA for aeb0f14
.github/workflows/update_directory_md.yml
@@ -50,8 +50,8 @@ jobs:
50
- name: Update DIRECTORY.md
51
run: |
52
cat DIRECTORY.md
53
- git config --global user.name github-actions
54
- 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"
55
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
56
git add DIRECTORY.md
57
git commit -am "updating DIRECTORY.md" || true
0 commit comments