(installationID: number)
| 84 | return client.octokit; |
| 85 | } |
| 86 | function createClient(installationID: number) { |
| 87 | const app = new App({ |
| 88 | appId: Resource.GithubAppID.value, |
| 89 | privateKey: Resource.GithubPrivateKey.value, |
| 90 | }); |
| 91 | return app.getInstallationOctokit(installationID); |
| 92 | } |
| 93 | |
| 94 | export const connect = zod( |
| 95 | Org.shape.installationID, |
no outgoing calls
no test coverage detected