From 7cc481ef9be21ba6fa356a71dcf90465e326484c Mon Sep 17 00:00:00 2001 From: Saw-jan Date: Tue, 15 Oct 2024 16:09:02 +0545 Subject: [PATCH] ci: fix adding new pipeline --- .drone.star | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.star b/.drone.star index 575c472460..93a39e0e65 100644 --- a/.drone.star +++ b/.drone.star @@ -418,7 +418,7 @@ def testPipelines(ctx): pipelines += e2eTestPipeline(ctx) if ("skip" not in config["k6LoadTests"] or not config["k6LoadTests"]["skip"]) and ("k6-test" in ctx.build.title.lower() or ctx.build.event == "cron"): - pipelines.append(k6LoadTests(ctx)) + pipelines += k6LoadTests(ctx) return pipelines