From 4b4bdd10b6f91d1a9d361483a2bad19ce67c46fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=ED=98=84=EC=88=98?= <96464209+Kimsoo0119@users.noreply.github.com> Date: Tue, 20 Jan 2026 06:10:35 +0900 Subject: [PATCH] fix(automation): fix jq quoting error in pr-triage.sh (#16958) Co-authored-by: Bryan Morgan --- .github/scripts/pr-triage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/pr-triage.sh b/.github/scripts/pr-triage.sh index cca12747b7..9a8fdca16e 100755 --- a/.github/scripts/pr-triage.sh +++ b/.github/scripts/pr-triage.sh @@ -142,7 +142,7 @@ JQ_EXTRACT_FIELDS='{ labels: [.labels[].name] | join(",") }' -JQ_TSV_FORMAT='"\((.number | tostring))\t\(.isDraft)\t\((.issue // \"null\") | tostring)\t\(.labels)"' # Corrected escaping for quotes within the string literal +JQ_TSV_FORMAT='"\((.number | tostring))\t\(.isDraft)\t\((.issue // null) | tostring)\t\(.labels)"' if [[ -n "${PR_NUMBER:-}" ]]; then echo "🔄 Processing single PR #${PR_NUMBER}"