We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a1cea9 commit 34f1a1fCopy full SHA for 34f1a1f
.github/workflows/external-pr-sync.yml
@@ -16,7 +16,7 @@ jobs:
16
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17
run: |
18
# Fetching fresh PR body via gh cli is more reliable than event payload for 'edited'
19
- PR_BODY=$(gh pr view ${{ github.event.pull_request.number }} --json body --jq .body)
+ PR_BODY=${{ github.event.pull_request.body }}
20
# Make body safe for multiline output
21
PR_BODY="${PR_BODY//'%'/'%25'}"
22
PR_BODY="${PR_BODY//$'\n'/'%0A'}"
0 commit comments