fix(issue-form): bound the gh release fetch with a 30s timeout

This commit is contained in:
Gauvain
2026-06-10 20:24:35 +02:00
parent 888b8bb342
commit 7c1900a27d

View File

@@ -52,7 +52,9 @@ const raw = execFileSync(
"--jq",
".[].tagName",
],
{ encoding: "utf8" },
// Bounded timeout so a stuck gh process fails the job fast instead of
// holding the workflow open until the job-level timeout.
{ encoding: "utf8", timeout: 30_000 },
);
const seen = new Set();
const versions = [];