How can I see which pipeline triggered my downstream pipeline (multi-project pipelines)

Hello folks,

I’m playing with the “multi-project pipelines” because I’ll need them to control deployments on a RBAC enabled Kubernetes Cluster. So far everything is working but I can’t see the “trigger” of my downstream pipeline. It just gets executed. Here is a little snippet:

createNamespaces:
  stage: createNamespaces
  variables:
    passed_project_name: ${project_name}
  trigger:
    project: <user>/eks-deployment-pipeline
    branch: dev
    strategy: depend

The pipeline triggers the deployment pipeline correctly, but there seems to be no way to find out from the deployment pipeline perspective, where it gets triggered from.

Am I missing something here?

Kind regards from Berlin :slight_smile: