mirror of https://github.com/actions/toolkit
Add isGhes utility
parent
fe3e7ce9a7
commit
ea267efe86
|
@ -386,3 +386,8 @@ export {markdownSummary} from './summary'
|
||||||
* Path exports
|
* Path exports
|
||||||
*/
|
*/
|
||||||
export {toPosixPath, toWin32Path, toPlatformPath} from './path-utils'
|
export {toPosixPath, toWin32Path, toPlatformPath} from './path-utils'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* isGhes helper export
|
||||||
|
*/
|
||||||
|
export {isGhes} from './utils'
|
||||||
|
|
|
@ -39,3 +39,11 @@ export function toCommandProperties(
|
||||||
endColumn: annotationProperties.endColumn
|
endColumn: annotationProperties.endColumn
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns this action runs on GitHub Enterprise Server or not.
|
||||||
|
*/
|
||||||
|
export function isGhes(): boolean {
|
||||||
|
const url = process.env['GITHUB_SERVER_URL'] || 'https://github.com'
|
||||||
|
return new URL(url).hostname.toUpperCase() !== 'GITHUB.COM'
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue