diff --git a/.github/workflows/notify_enterprise.yaml b/.github/workflows/notify_enterprise.yaml index 1c1f589e16..c9c1552d88 100644 --- a/.github/workflows/notify_enterprise.yaml +++ b/.github/workflows/notify_enterprise.yaml @@ -34,7 +34,7 @@ jobs: inputs: { repository: "${{ github.repository }}", commit: "${{ github.event.head_commit.id }}", - actor: "${{ github.actor }}", + actor: "${{ github.event.head_commit.committer.name || github.actor }} <${{ github.event.head_commit.committer.email }}>", message: ${{ toJSON(github.event.head_commit.message) }}, } }) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 51879ab485..33ca7317d3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -55,7 +55,7 @@ jobs: inputs: { repository: "${{ github.repository }}", commit: "${{ github.event.head_commit.id }}", - actor: "${{ github.event.head_commit.committer.name }} <${{ github.event.head_commit.committer.email }}>", + actor: "${{ github.actor }}", message: ${{ toJSON(github.event.head_commit.message) }}, } })