Skip to content

Commit

Permalink
Remove curly braces
Browse files Browse the repository at this point in the history
  • Loading branch information
katybaulch committed May 1, 2024
1 parent a9f6ea2 commit 6bbf80b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ runs:
PR_NUMBER="${{ inputs.pr_number }}"
pr_dump_file="./escaped_pr_body"
rm -f "${pr_dump_file}"
touch "${pr_dump_file}"
rm -f "$pr_dump_file"
touch "$pr_dump_file"
echo "Dumping PR body to file..."
set -x
cat <<< "${{ inputs.pr_body }}" > "${pr_dump_file}"
cat > "${{ inputs.pr_body }}" > "$pr_dump_file"
echo "Cat-ting ${pr_dump_file}..."
cat "${pr_dump_file}"
PR_BODY=$(cat "${pr_dump_file}")
echo "Cat-ting $pr_dump_file..."
cat "$pr_dump_file"
PR_BODY=$(cat "$pr_dump_file")
echo "Determining whether user has selected an auto-tag option..."
script_output=$("${{ github.action_path }}/auto-tag.sh"
Expand Down

0 comments on commit 6bbf80b

Please sign in to comment.