We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 196b84e commit ea5c3ebCopy full SHA for ea5c3eb
.github/workflows/ready-for-doc-review.yml
@@ -52,7 +52,7 @@ jobs:
52
echo "Extracting issue numbers from PR description..."
53
54
# Clean up PR description to avoid syntax errors in grep command
55
- PR_BODY=$(printf '%q' "${{ github.event.pull_request.body }}")
+ PR_BODY="${{ github.event.pull_request.body }}"
56
echo "PR description to use in the script: $PR_BODY"
57
58
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