Skip to content

Commit

Permalink
fix: Attempt to fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfr committed Jul 30, 2024
1 parent 9566406 commit 8e0f538
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/update-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
skip: ${{ steps.check_email_encryption.outputs.encoded == 'false' }}

- name: Set updated email
id: updated_email
id: set_updated_email
if: ${{ steps.command.outputs.continue == 'true' }}
run: |
updated_email=""
Expand All @@ -117,6 +117,7 @@ jobs:
elif [[ "$DECODE_EMAIL_COMMAND_CONTINUE" == "true" ]]; then
updated_email="$DECODED_EMAIL"
fi
echo "updated_email [$updated_email]"
echo "updated_email=$updated_email" >> $GITHUB_OUTPUT
env:
ENCODE_EMAIL_COMMAND_CONTINUE:
Expand Down Expand Up @@ -147,7 +148,7 @@ jobs:
GH_REPO: ${{ github.repository }}
ISSUE_NUMBER: ${{ github.event.issue.number }}
OLD_EMAIL: ${{ steps.extract.outputs.email }}
NEW_EMAIL: ${{ steps.updated_email.outputs.updated_email }}
NEW_EMAIL: ${{ steps.set_updated_email.outputs.updated_email }}

- name: command results comment (success)
if: ${{ steps.command.outputs.continue == 'true' && success() }}
Expand Down

0 comments on commit 8e0f538

Please sign in to comment.