Sender
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (pull_request) Successful in 3s

This commit is contained in:
2025-03-03 11:48:28 -06:00
parent cfbacd197b
commit 7ed22de9e4

View File

@ -33,7 +33,7 @@ jobs:
- 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}}"
run: echo "${{ github.event.pull_request.head.user.email}}"
- name: pr user email
run: echo "${{ github.event.pull_request.user.email}}"
- name: pr user login
@ -42,3 +42,5 @@ jobs:
run: echo "${{ github.event.pull_request.author.email}}"
- name: head user login
run: echo "${{ github.event.head.user.login }}"
- name: event sender
run: echo "${{ github.event.sender.email }}"