From ad2487198da398ba6b4a350cc73d3be0febb8492 Mon Sep 17 00:00:00 2001
From: Mark Nuzzo <mnuzzo@gitlab.com>
Date: Mon, 22 Apr 2024 20:46:23 +0000
Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s)

Co-authored-by: Lysanne Pinto <lpinto@gitlab.com>
---
 doc/ci/yaml/index.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/doc/ci/yaml/index.md b/doc/ci/yaml/index.md
index 834b825d001ed..d429cf8b829f1 100644
--- a/doc/ci/yaml/index.md
+++ b/doc/ci/yaml/index.md
@@ -997,6 +997,7 @@ in a header section.
 
 **Possible inputs**: Can be one of:
 
+- `array`, to accept an [array](../yaml/inputs.md#array-type) of inputs.
 - `string`, to accept string inputs (default when not defined).
 - `number`, to only accept numeric inputs.
 - `boolean`, to only accept `true` or `false` inputs.
@@ -1013,6 +1014,8 @@ spec:
       type: number
     available:
       type: boolean
+    array_input:
+      type: array  
 ---
 
 # The pipeline configuration would follow...
-- 
GitLab