Skip to content

Commit

Permalink
fix: assign assignees to the assignees field instead of body field (#163
Browse files Browse the repository at this point in the history
)
  • Loading branch information
misund authored Aug 16, 2023
1 parent 25379ae commit 0071d48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helper/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 0071d48

Please sign in to comment.