switch GITHUB_URL to GITHUB_SERVER_URL (#248)
This commit is contained in:
		@@ -20,5 +20,10 @@ export function getFetchUrl(settings: IGitSourceSettings): string {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export function getServerUrl(): URL {
 | 
			
		||||
  return new URL(process.env['GITHUB_URL'] || 'https://github.com')
 | 
			
		||||
  // todo: remove GITHUB_URL after support for GHES Alpha is no longer needed
 | 
			
		||||
  return new URL(
 | 
			
		||||
    process.env['GITHUB_SERVER_URL'] ||
 | 
			
		||||
      process.env['GITHUB_URL'] ||
 | 
			
		||||
      'https://github.com'
 | 
			
		||||
  )
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user