We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f913f98 commit f8a1828Copy full SHA for f8a1828
src/shared/clients/codecatalystClient.ts
@@ -750,7 +750,9 @@ export async function isThirdPartyRepo(
750
codeCatalystRepo: GetSourceRepositoryCloneUrlsRequest
751
): Promise<boolean> {
752
const url = await client.getRepoCloneUrl(codeCatalystRepo)
753
- // TODO: Make more robust to work with gamma once getCodeCatalystConfig()
754
- // can provide a valid hostname
755
- return !Uri.parse(url).authority.endsWith('codecatalyst.aws')
+ // TODO: Make more robust to work with getCodeCatalystConfig().
+ return (
+ !Uri.parse(url).authority.endsWith('codecatalyst.aws') &&
756
+ !Uri.parse(url).authority.endsWith('caws.dev-tools.aws.dev')
757
+ )
758
}
0 commit comments