From 92f38ce96d15a3162dd64f1cd49fd279d8988271 Mon Sep 17 00:00:00 2001 From: Michael McLoughlin Date: Sat, 7 Jan 2023 20:57:46 -0800 Subject: [PATCH] .github/actions: fix bot author template (#357) Many bot commits have landed with an incorrectly templated author name, for example 67039b7ed96f015818f68be22f009bd9b6ed910d has: Co-authored-by: {{ steps.bot.outputs.login }} <104697117+cadobot[bot]@users.noreply.github.com> This PR fixes the bad template. --- .github/actions/create-pull-request/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/create-pull-request/action.yml b/.github/actions/create-pull-request/action.yml index ac39679..4b55b77 100644 --- a/.github/actions/create-pull-request/action.yml +++ b/.github/actions/create-pull-request/action.yml @@ -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