Skip to content

Commit

Permalink
fix: use GITHUB_ACTOR in git config (#701)
Browse files Browse the repository at this point in the history
  • Loading branch information
vil02 authored Jan 13, 2024
1 parent dc0cb36 commit db7c875
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/godocmd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
go install github.com/tjgurwara99/godocmd@v0.1.3
- name: Configure Github Action
run: |
git config --global user.name github-action
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"
- name: Update README.md file
run: |
godocmd -r -module ./ -w
Expand Down

0 comments on commit db7c875

Please sign in to comment.