From 1c64a6e04ef6f48aa996f84a5acbbad92b3b13f4 Mon Sep 17 00:00:00 2001 From: Daniel Lamando Date: Tue, 17 Sep 2024 23:36:08 +0200 Subject: [PATCH] Green CI? --- tools/gha.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/gha.ts b/tools/gha.ts index 4e2e05d..8322ad5 100644 --- a/tools/gha.ts +++ b/tools/gha.ts @@ -54,7 +54,11 @@ for (const job of jobList) { } console.log('✅', 'All jobs completed successfully.\n'); -async function findFsContext() { +async function findFsContext(): Promise<{ + rootDir: string; + ghaDir: string; + workflows: string[]; +}> { const cleanTail = (x: string) => x.endsWith(path.SEPARATOR) ? x.slice(0, -path.SEPARATOR.length)