Skip to content

Commit

Permalink
chore: update dist & changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
xrkffgg committed Aug 16, 2023
1 parent 0071d48 commit 5457ae8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5457ae8

Please sign in to comment.