File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,8 @@ export const fetchWithRetry = async <T>(
130130export const getAuthCredentialsForRepo = async ( repo : RepoWithConnections , db : PrismaClient , logger ?: Logger ) : Promise < RepoAuthCredentials | undefined > => {
131131 // If we have github apps configured we assume that we must use them for github service auth
132132 if ( repo . external_codeHostType === 'github' && hasEntitlement ( 'github-app' ) && GithubAppManager . getInstance ( ) . appsConfigured ( ) ) {
133+ logger ?. debug ( `Using GitHub App for service auth for repo ${ repo . displayName } hosted at ${ repo . external_codeHostUrl } ` ) ;
134+
133135 const owner = repo . displayName ?. split ( '/' ) [ 0 ] ;
134136 const deploymentHostname = new URL ( repo . external_codeHostUrl ) . hostname ;
135137 if ( ! owner || ! deploymentHostname ) {
You can’t perform that action at this time.
0 commit comments