mirror of
https://gitea.com/Lydanne/issues-helper.git
synced 2025-08-19 10:15:59 +08:00
fix: assign assignees to the assignees field instead of body field (#163)
This commit is contained in:

committed by
GitHub

parent
25379ae1ea
commit
0071d48bea
@@ -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) {
|
||||
|
Reference in New Issue
Block a user