update files in .github to support arm64

This commit is contained in:
Sam Heinz
2026-05-22 23:50:19 +10:00
parent 8e477b1fca
commit 4eecc6ad70
8 changed files with 42 additions and 1 deletions

13
.github/workflows/unmet-pr-close.yml generated vendored
View File

@@ -91,6 +91,19 @@ jobs:
}
}
const architectureOptions = [
"**arm64 supported**",
"**arm64 not tested**",
"**arm64 not supported**"
];
const hasArchitectureSelection = architectureOptions.some(req => {
const line = findLine(req);
return line && checkboxChecked(line);
});
if (!hasArchitectureSelection) {
missing.push("One arm64 support option (`arm64 supported`, `arm64 not tested`, or `arm64 not supported`) must be checked");
}
if (missing.length > 0) {
let list = "";
for (const m of missing) {