Skip to content

Commit

Permalink
chore: name and email convention (#3871)
Browse files Browse the repository at this point in the history
## 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
  • Loading branch information
gastonfournier committed May 26, 2023
1 parent f73d36f commit c7d8c9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Expand Up @@ -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) }},
}
})

0 comments on commit c7d8c9f

Please sign in to comment.