.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:
Michael McLoughlin
2023-01-07 20:57:46 -08:00
committed by GitHub
parent d5e3835a60
commit 92f38ce96d

View File

@@ -47,7 +47,7 @@ runs:
with:
token: ${{ steps.app.outputs.token }}
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 }}
base: master
delete-branch: true