From 103db93efa6bc778aca29b92c57691be785251ca Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Thu, 5 Mar 2026 16:06:03 +0000 Subject: [PATCH] Make it more explicit that `getSetupSteps` just needs a `JobSpecification` --- pr-checks/sync.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pr-checks/sync.ts b/pr-checks/sync.ts index e4c8e4e61..fd648f2f7 100755 --- a/pr-checks/sync.ts +++ b/pr-checks/sync.ts @@ -335,7 +335,7 @@ function generateJobMatrix( * * @returns An object containing setup steps and additional input specifications. */ -function getSetupSteps(checkSpecification: Specification): { +function getSetupSteps(checkSpecification: JobSpecification): { inputs: WorkflowInputs; steps: any[]; } {