From c05837d3e8b7cc67635eaa027d64ae173ec2b7d5 Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Mon, 18 May 2026 19:38:16 +0100 Subject: [PATCH] Scaffold `update-ghes-versions.ts` script --- pr-checks/update-ghes-versions.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 pr-checks/update-ghes-versions.ts 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(); +}