Skip to content

Commit 5457ae8

Browse files
committed
chore: update dist & changelog
1 parent 0071d48 commit 5457ae8

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77
🛠 refactor
88
-->
99

10+
## v3.5.2
11+
12+
`2023.08.16`
13+
14+
- 🐞 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)
15+
1016
## v3.5.1
1117

1218
`2023.07.27`

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16920,7 +16920,7 @@ function doGetIssue() {
1692016920
const labelsString = labels.length ? labels.map(({ name }) => name).join(',') : '';
1692116921
core.setOutput('issue-labels', labelsString);
1692216922
const assigneesString = assignees.length ? assignees.map(({ login }) => login).join(',') : '';
16923-
core.setOutput('issue-body', assigneesString);
16923+
core.setOutput('issue-assignees', assigneesString);
1692416924
});
1692516925
}
1692616926
exports.doGetIssue = doGetIssue;

0 commit comments

Comments
 (0)