From 737699f74ebdd2beaf39a2bc4aa84d650cf9b1cf Mon Sep 17 00:00:00 2001 From: nickofthyme Date: Mon, 2 Dec 2024 11:54:30 -0600 Subject: [PATCH] ci: fix buildkite group steps type error --- .buildkite/utils/pipeline/steps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/utils/pipeline/steps.ts b/.buildkite/utils/pipeline/steps.ts index a8b6f635e4..3535b3cd3f 100644 --- a/.buildkite/utils/pipeline/steps.ts +++ b/.buildkite/utils/pipeline/steps.ts @@ -51,7 +51,7 @@ export type CustomGroupStep = Omit & { * TODO: fix this to be accounted for in main logic */ ignoreForced?: boolean; - steps: CustomCommandStep[]; + steps: [CustomCommandStep, ...CustomCommandStep[]]; }; // Only current supported steps