Skip to content

Commit 00dd363

Browse files
Chore(project): assignees 자동 할당 로직 추가 (#298)
1 parent d181e98 commit 00dd363

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/assign-auto-label.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,13 @@ jobs:
7474
} catch (error) {
7575
}
7676
}
77+
78+
try {
79+
await github.rest.issues.addAssignees({
80+
owner: context.repo.owner,
81+
repo: context.repo.repo,
82+
issue_number: issueNumber,
83+
assignees: [author]
84+
});
85+
} catch (error) {
86+
}

0 commit comments

Comments
 (0)