Try a script?
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (pull_request) Successful in 8s

This commit is contained in:
2025-03-03 11:53:04 -06:00
parent 7ed22de9e4
commit 78876a9aa6

View File

@ -11,6 +11,16 @@ jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
id: get-mail
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
return (await github.rest.users.getByUsername({
username: ${{ tojson(github.event.sender.login) }}
})).data.email;
result-encoding: string
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
@ -44,3 +54,5 @@ jobs:
run: echo "${{ github.event.head.user.login }}"
- name: event sender
run: echo "${{ github.event.sender.email }}"
- name: script email
run: echo ${{ steps.get-mail.outputs.result }}