MCPcopy Index your code
hub / github.com/Linen-dev/linen.dev / handleIssuesClosed

Function handleIssuesClosed

packages/integration-github/src/inbound.ts:140–143  ·  view source on GitHub ↗
(payload: GitHubTypes.IssuesClosedEvent)

Source from the content-addressed store, hash-verified

138}
139
140async function handleIssuesClosed(payload: GitHubTypes.IssuesClosedEvent) {
141 const thread = await handleIssue(payload);
142 await linenSdk.updateThread({ ...thread, status: 'CLOSE' });
143}
144
145async function handleIssuesReopened(payload: GitHubTypes.IssuesReopenedEvent) {
146 const thread = await handleIssue(payload);

Callers 1

inbound.tsFile · 0.85

Calls 2

handleIssueFunction · 0.85
updateThreadMethod · 0.65

Tested by

no test coverage detected