You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for executing sub-workflows directly from a GitHub repository by performing a full git clone. This will allow users to reference workflows stored in GitHub and execute them without manual downloads.
Example:
steps:
- name: run sub-dag from GitHubrun:
repo: "https://github.com/owner/repo.git"# Git URLref: "main"# Optional branch, tag, or commit SHApath: "path/to/dag.yaml"# Path to the DAG file in the repotoken: "${GITHUB_TOKEN}"# Optional, for private repositories
The text was updated successfully, but these errors were encountered:
Add support for executing sub-workflows directly from a GitHub repository by performing a full git clone. This will allow users to reference workflows stored in GitHub and execute them without manual downloads.
Example:
The text was updated successfully, but these errors were encountered: