(payload: GitHubTypes.IssuesReopenedEvent)
| 143 | } |
| 144 | |
| 145 | async function handleIssuesReopened(payload: GitHubTypes.IssuesReopenedEvent) { |
| 146 | const thread = await handleIssue(payload); |
| 147 | await linenSdk.updateThread({ ...thread, status: 'OPEN' }); |
| 148 | } |
| 149 | |
| 150 | async function handleIssueCommentCreated( |
| 151 | payload: GitHubTypes.IssueCommentCreatedEvent |
no test coverage detected