Emails should be in `< ... >`

This commit is contained in:
Arman Bilge 2022-11-12 19:10:07 +00:00 committed by Cole Helbling
parent 5e50e4bcfb
commit 867efeb864
1 changed files with 2 additions and 2 deletions

View File

@ -121,9 +121,9 @@ runs:
shell: bash shell: bash
run: | run: |
echo "GIT_AUTHOR_NAME=${{ inputs.git-author-name }}" >> $GITHUB_ENV 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_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 - name: Run update-flake-lock.sh
run: $GITHUB_ACTION_PATH/update-flake-lock.sh run: $GITHUB_ACTION_PATH/update-flake-lock.sh
shell: bash shell: bash