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 9a27204 commit ce7e086
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/actions/encode-decode-string/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ runs:
else
output_string=$INPUT_STRING
fi
echo "INPUT_STRING [$INPUT_STRING]"
echo "output_string [$output_string]"
echo "output_string=$output_string" >> $GITHUB_OUTPUT
env:
INPUT_STRING: ${{ inputs.input_string }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/update-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,12 @@ jobs:
updated_email=""
if [[ "$ENCODE_EMAIL_COMMAND_CONTINUE" == "true" ]]; then
updated_email="$ENCODED_EMAIL"
echo "from ENCODED_EMAIL [$ENCODED_EMAIL]"
elif [[ "$DECODE_EMAIL_COMMAND_CONTINUE" == "true" ]]; then
updated_email="$DECODED_EMAIL"
echo "from DECODED_EMAIL [$DECODED_EMAIL]"
fi
echo "updated_email [$updated_email]"
echo "updated_email=$updated_email" >> $GITHUB_OUTPUT
env:
ENCODE_EMAIL_COMMAND_CONTINUE:
Expand Down

0 comments on commit ce7e086

Please sign in to comment.