.github/actions: fix bot author template (#357)
Many bot commits have landed with an incorrectly templated author name, for
example 67039b7ed9 has:
Co-authored-by: {{ steps.bot.outputs.login }} <104697117+cadobot[bot]@users.noreply.github.com>
This PR fixes the bad template.
This commit is contained in:
committed by
GitHub
parent
d5e3835a60
commit
92f38ce96d
@@ -47,7 +47,7 @@ runs:
|
|||||||
with:
|
with:
|
||||||
token: ${{ steps.app.outputs.token }}
|
token: ${{ steps.app.outputs.token }}
|
||||||
commit-message: ${{ inputs.title }}
|
commit-message: ${{ inputs.title }}
|
||||||
author: "{{ steps.bot.outputs.login }} <${{ steps.bot.outputs.id }}+${{ steps.bot.outputs.login }}@users.noreply.github.com>"
|
author: "${{ steps.bot.outputs.login }} <${{ steps.bot.outputs.id }}+${{ steps.bot.outputs.login }}@users.noreply.github.com>"
|
||||||
branch: ${{ inputs.branch }}
|
branch: ${{ inputs.branch }}
|
||||||
base: master
|
base: master
|
||||||
delete-branch: true
|
delete-branch: true
|
||||||
|
|||||||
Reference in New Issue
Block a user