From 867efeb86472e9c2ed230f8204d36e297ff80a16 Mon Sep 17 00:00:00 2001 From: Arman Bilge Date: Sat, 12 Nov 2022 19:10:07 +0000 Subject: [PATCH] Emails should be in `< ... >` --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index be1fc37..189f257 100644 --- a/action.yml +++ b/action.yml @@ -121,9 +121,9 @@ runs: shell: bash run: | echo "GIT_AUTHOR_NAME=${{ inputs.git-author-name }}" >> $GITHUB_ENV - echo "GIT_AUTHOR_EMAIL=${{ inputs.git-author-email }}" >> $GITHUB_ENV + echo "GIT_AUTHOR_EMAIL=<${{ inputs.git-author-email }}>" >> $GITHUB_ENV echo "GIT_COMMITTER_NAME=${{ inputs.git-committer-name }}" >> $GITHUB_ENV - echo "GIT_COMMITTER_EMAIL=${{ inputs.git-committer-email }}" >> $GITHUB_ENV + echo "GIT_COMMITTER_EMAIL=<${{ inputs.git-committer-email }}>" >> $GITHUB_ENV - name: Run update-flake-lock.sh run: $GITHUB_ACTION_PATH/update-flake-lock.sh shell: bash