From 51ee84e6924f30064f90909f8f56f2c66ff421a2 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Mon, 24 Nov 2025 10:09:02 -0500 Subject: [PATCH] jq fix. --- action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index ec499b3..4ebf186 100644 --- a/action.yml +++ b/action.yml @@ -75,10 +75,12 @@ runs: Please reply with a keyword on this issue. " + ASSIGNEES_JSON=$(jq -nc --arg csv "$APPROVERS" '$csv | split(",")') + json=$(jq -n \ --arg title "$title" \ --arg body "$body" \ - --argjson assignees "$(printf '"%s"' ${APPROVERS//,/\" \"})" \ + --argjson assignees "$ASSIGNEES_JSON" \ '{title:$title, body:$body, assignees:$assignees}') resp=$(curl -s -X POST \