From 5457ae8d7c1dc20597a753501d30183ed8043c8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=85=83=E5=87=9B?= Date: Wed, 16 Aug 2023 13:29:01 +0800 Subject: [PATCH] chore: update dist & changelog --- CHANGELOG.md | 6 ++++++ dist/index.js | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebb7005..7b40991 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ 🛠 refactor --> +## v3.5.2 + +`2023.08.16` + +- 🐞 fix: return `issue-assignees` in the correct output field for `get-issue`. [#163](https://github.com/actions-cool/issues-helper/pull/163) [@misund](https://github.com/misund) + ## v3.5.1 `2023.07.27` diff --git a/dist/index.js b/dist/index.js index e311613..b2049d5 100644 --- a/dist/index.js +++ b/dist/index.js @@ -16920,7 +16920,7 @@ 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); }); } exports.doGetIssue = doGetIssue;