From 0071d48bea7f3dc272e1639ce51d9bcae235adb6 Mon Sep 17 00:00:00 2001 From: Just Thomas Hiorth Misund Date: Wed, 16 Aug 2023 07:24:08 +0200 Subject: [PATCH] fix: assign assignees to the assignees field instead of body field (#163) --- src/helper/base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helper/base.ts b/src/helper/base.ts index d29374d0..7bb8e151 100644 --- a/src/helper/base.ts +++ b/src/helper/base.ts @@ -104,7 +104,7 @@ export async function doGetIssue() { const labelsString = labels.length ? labels.map(({ name }) => name).join(',') : ''; core.setOutput('issue-labels', labelsString); const assigneesString = assignees.length ? assignees.map(({ login }) => login).join(',') : ''; - core.setOutput('issue-body', assigneesString); + core.setOutput('issue-assignees', assigneesString); } export async function doLockIssue(issueNumber?: number) {