pr-test #1

Open
cpickett wants to merge 9 commits from pr-test into main
Showing only changes of commit 046fca2d27 - Show all commits

View File

@ -25,5 +25,11 @@ jobs:
run: echo "${{ github.event.head_commit.author.email }}" run: echo "${{ github.event.head_commit.author.email }}"
- name: user email - name: user email
run: echo "${{ github.event.user.email}}" run: echo "${{ github.event.user.email}}"
- name: pr commits[0] email
run: echo "${{ github.event.pull_request.commits[0].author.email}}"
- name: pr head_commit email
run: echo "${{ github.event.pull_request.head_commit.author.email}}"
- name: pr user email
run: echo "${{ github.event.pull_request.user.email}}"
- name: head user login - name: head user login
run: echo "${{ github.event.head.user.login }}" run: echo "${{ github.event.head.user.login }}"