Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 489 Bytes

Trigger.md

File metadata and controls

33 lines (23 loc) · 489 Bytes

Trigger

Parent child pipelines

trigger:
  include:
  - local: path/to/child-pipeline.yml

Transformed GitHub action

The job graph of the included files is merged with the job graph of the calling workflow.

Multi-project pipelines

trigger:
  "org/repo"

Transformed GitHub action

- name: Run downstream workflow
  run: gh workflow run $WORKFLOW_FILE --repo org/repo
  env:
    WORKFLOW_FILE: UPDATE_ME

Unsupported options

None