GitHub user mohhddhassan added a comment to the discussion: Airflow development workflow and DAG Deployment from feature branches
Your welcome ;), Git-Sync only supports one branch, so you can’t directly pull both dev and feature branches at the same time. Option 1: Run multiple Git-Sync sidecars, each syncing a different branch into separate folders. Option 2: Keep Git-Sync on dev, and let CI/CD copy feature DAGs (with namespaced DAG IDs) into a feature_dags/ folder inside dev. Option 3: Spin up ephemeral Airflow environments per feature branch, with Git-Sync pointing to that branch. GitHub link: https://github.com/apache/airflow/discussions/54669#discussioncomment-14174340 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
