Skip to content

Commit bb9669b

Browse files
authored
Merge pull request #12 from benjamin-747/main
feat: add assignee when assign task
2 parents 423a7fc + 1ac5ce2 commit bb9669b

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

src/mentor.ts

+16
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,28 @@ export async function handle_mentor_cmd(context: Context, config: Config, payloa
5353
issue_number: task.github_issue_number,
5454
labels: ["已认领"],
5555
});
56+
if (task.student_github_login) {
57+
await context.octokit.issues.addAssignees({
58+
owner: task.owner,
59+
repo: task.repo,
60+
issue_number: task.github_issue_number,
61+
assignees: [task.student_github_login],
62+
});
63+
}
5664
return setResponse(config.comment.internApprove.success, true);
5765

5866
case "/intern-fail":
5967
if (task.task_status !== TaskStatus.Assigned) {
6068
return setResponse(config.comment.command.invalidTaskState);
6169
}
70+
if (task.student_github_login) {
71+
await context.octokit.issues.removeAssignees({
72+
owner: task.owner,
73+
repo: task.repo,
74+
issue_number: task.github_issue_number,
75+
assignees: [task.student_github_login],
76+
});
77+
}
6278
await releaseTask(req, context, payload);
6379

6480
return setResponse(config.comment.internFail.success, true);

src/student.ts

+8
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,14 @@ export async function releaseTask(req: CommandRequest, context: Context, payload
155155
name: "已认领",
156156
});
157157
}
158+
if (task.student_github_login) {
159+
await context.octokit.issues.removeAssignees({
160+
owner: task.owner,
161+
repo: task.repo,
162+
issue_number: task.github_issue_number,
163+
assignees: [task.student_github_login],
164+
});
165+
}
158166
const apiUrl = `${process.env.API_ENDPOINT}/task/release`;
159167
const res = await postData<boolean, CommandRequest>(apiUrl, req).then((res) => {
160168
return res.data

0 commit comments

Comments
 (0)