79653104

Date: 2025-06-04 15:53:21
Score: 1
Natty:
Report link

I was able to achieve this in GitLab with a CI/CD Component and an CI/CD inputs Array type.

Pipeline: bethomas/pipeline-experiments

Files:

include:
  - component: $CI_SERVER_FQDN/$CI_PROJECT_PATH/helloworld@$CI_COMMIT_SHA
    inputs:
      names: ["John", "Jane"]
spec:
  inputs:
    names:
      description: Collection of names
      type: array
      default: []

---
component-job:
  script: echo $NAME
  parallel:
    matrix:
      - NAME: $[[ inputs.names ]]
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: devpro