Skip to content

Commit

Permalink
Remove double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
katybaulch committed May 1, 2024
1 parent 214fba9 commit 31b947b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ runs:
PR_NUMBER: "${{ inputs.pr_number }}"
run: |
echo "Determining section to parse..."
PR_BODY="$(echo ${{ inputs.pr_body }} | awk '/^## Proposed version/,/^Notes:/ {if (!/^## Proposed version/ && !/^Notes:/) print}' )"
PR_BODY=$(echo ${{ inputs.pr_body }} | awk '/^## Proposed version/,/^Notes:/ {if (!/^## Proposed version/ && !/^Notes:/) print}' )
echo "Determining whether user has selected an auto-tag option..."
script_output=$("${{ github.action_path }}/auto-tag.sh"
Expand Down

0 comments on commit 31b947b

Please sign in to comment.