Try some more stuff
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s
Gitea Actions Demo / Explore-Gitea-Actions (pull_request) Successful in 3s

This commit is contained in:
2025-03-03 10:33:48 -06:00
parent b5dcbc2f7f
commit 046fca2d27

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 }}"