Skip to content

Commit ea5c3eb

Browse files
authored
Fix PR_BODY variable setting (#54949)
1 parent 196b84e commit ea5c3eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ready-for-doc-review.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
echo "Extracting issue numbers from PR description..."
5353
5454
# Clean up PR description to avoid syntax errors in grep command
55-
PR_BODY=$(printf '%q' "${{ github.event.pull_request.body }}")
55+
PR_BODY="${{ github.event.pull_request.body }}"
5656
echo "PR description to use in the script: $PR_BODY"
5757
5858
ISSUE_NUMS=$(echo "$PR_BODY" | grep -oE '(https://github.com/github/docs-content/issues/[0-9]+|github/docs-content#[0-9]+|#[0-9]+)' | grep -oE '[0-9]+$')

0 commit comments

Comments
 (0)