From 1375c089981ee67e42ab0817579d4ff0c4b63b1c Mon Sep 17 00:00:00 2001 From: sriramveeraghanta Date: Wed, 4 Oct 2023 15:28:23 +0530 Subject: [PATCH] fix: sync job pr description escaped values fix --- .github/workflows/create-sync-pr.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-sync-pr.yml b/.github/workflows/create-sync-pr.yml index ee1ac7c7087..98605af7418 100644 --- a/.github/workflows/create-sync-pr.yml +++ b/.github/workflows/create-sync-pr.yml @@ -59,9 +59,19 @@ jobs: PR_TITLE="${{ github.event.pull_request.title }}" PR_BODY="${{ github.event.pull_request.body }}" + # Remove double quotes + PR_TITLE_CLEANED="${PR_TITLE//\"/}" + PR_BODY_CLEANED="${PR_BODY//\"/}" + + # Construct PR_BODY_CONTENT using a here-document + PR_BODY_CONTENT=$(cat <