From c7d8c9fd25467b68f7d2bb1697a6730596919441 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gast=C3=B3n=20Fournier?= Date: Fri, 26 May 2023 16:04:41 +0200 Subject: [PATCH] chore: name and email convention (#3871) ## About the changes Minor improvement to communicate the author of a commit as `Name ` Another option is to send email and name in different fields but we're only using it here https://github.com/ivarconr/unleash-enterprise/blob/master/.github/update_dependency_version.sh#L39 so this should be fine --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d901261e71..51879ab485 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.username }}", + actor: "${{ github.event.head_commit.committer.name }} <${{ github.event.head_commit.committer.email }}>", message: ${{ toJSON(github.event.head_commit.message) }}, } })