Skip to content

Commit

Permalink
try user from pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebCourier committed Feb 28, 2024
1 parent c985d33 commit 4cded44
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
cp .gitignore .gitignore.local
cp .gitignore.pub .gitignore
echo author_name ${{ github.event.sender.name }}
echo author_email ${{ github.event.sender.email }}
echo author_name ${{ github.event.pull_request.user.name }}
echo author_email ${{ github.event.pull_request.user.email }}
continue-on-error: false

- name: Commit SDK updates
Expand All @@ -51,11 +51,11 @@ jobs:

# The name of the user that will be displayed as the author of the commit.
# Default: depends on the default_author input
author_name: ${{ github.event.sender.name }}
author_name: ${{ github.event.pull_request.user.name }}

# The email of the user that will be displayed as the author of the commit.
# Default: depends on the default_author input
author_email: ${{ github.event.sender.email }}
author_email: ${{ github.event.pull_request.user.email }}

# The message for the commit.
# Default: 'Commit from GitHub Actions (name of the workflow)'
Expand Down

0 comments on commit 4cded44

Please sign in to comment.