Scaffold update-ghes-versions.ts script

This commit is contained in:
Michael B. Gale
2026-05-18 19:38:16 +01:00
parent c8a3492b26
commit c05837d3e8
+14
View File
@@ -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();
}