I have a project "my_project_0" that must trigger pipelines of all my other projects ("my_project_1", "my_project_2", etc.).
What I want:
stage: multi_project_test
trigger:
project: "my_project_1"
strategy: depend
trigger:
project: "my_project_2"
strategy: depend
trigger:
project: "my_project_3"
strategy: depend
...but I have the error Key 'trigger' is duplicated.
The official page about Multi-project pipelines is useless because it has no examples for multi-projects pipelines (only for a parent-child trigger).
What is the correct syntax to trigger pipelines of multiple projects?