Skip to content

Commit

Permalink
Experimental fix of backticks in PR description.
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpojer committed Oct 22, 2024
1 parent 08c38e5 commit 204e244
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/check_pr_release_notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,10 @@ jobs:
if: steps.pr_info.outputs.skip_check == 'false'
run: |
# Extract the body from the previous step
PR_BODY="${{ steps.pr_info.outputs.pr_body }}"
PR_BODY=$(cat <<-'EOF'
${{ steps.pr_info.outputs.pr_body }}
EOF
)
# Check if "Release Notes:" exists
if ! echo "$PR_BODY" | grep -q '${{ env.RLS_NOTES_TAG_REGEX }}'; then
Expand Down

0 comments on commit 204e244

Please sign in to comment.