diff --git a/pr-checks/update-ghes-versions.ts b/pr-checks/update-ghes-versions.ts new file mode 100644 index 000000000..cf8b20517 --- /dev/null +++ b/pr-checks/update-ghes-versions.ts @@ -0,0 +1,14 @@ +#!/usr/bin/env npx tsx + +/** + * Updates src/api-compatibility.json with the current range of supported + * GitHub Enterprise Server versions by reading the releases.json file from + * an `enterprise-releases` checkout. + */ + +function main() {} + +// Only call `main` if this script was run directly. +if (require.main === module) { + main(); +}