1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-23 00:22:19 +01:00

chore: name and email convention (#3871)

## About the changes
Minor improvement to communicate the author of a commit as `Name
<Email>`

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
This commit is contained in:
Gastón Fournier 2023-05-26 16:04:41 +02:00 committed by GitHub
parent f73d36fda3
commit c7d8c9fd25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) }},
}
})