chore: update dist & changelog

This commit is contained in:
元凛
2023-08-16 13:29:01 +08:00
parent 0071d48bea
commit 5457ae8d7c
2 changed files with 7 additions and 1 deletions

View File

@@ -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`

2
dist/index.js vendored
View File

@@ -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;