Add constant for FIRST_SUPPORTED_RELEASE

This commit is contained in:
Michael B. Gale
2026-05-19 12:35:13 +01:00
parent 952a538c24
commit d98bedfdea
+6
View File
@@ -6,8 +6,14 @@
* an `enterprise-releases` checkout.
*/
import { type SemVer } from "semver";
import * as semver from "semver";
import { API_COMPATIBILITY_FILE } from "./config";
/** The first GHES version that included Code Scanning. */
const FIRST_SUPPORTED_RELEASE: SemVer = new semver.SemVer("2.22.0");
function main() {}
// Only call `main` if this script was run directly.