(githubProvider: Github)
| 84 | }; |
| 85 | |
| 86 | export const haveGithubRequirements = (githubProvider: Github) => { |
| 87 | return !!( |
| 88 | githubProvider?.githubAppId && |
| 89 | githubProvider?.githubPrivateKey && |
| 90 | githubProvider?.githubInstallationId |
| 91 | ); |
| 92 | }; |
| 93 | |
| 94 | const getErrorCloneRequirements = (entity: { |
| 95 | repository?: string | null; |
no outgoing calls
no test coverage detected