From 60ef1e6cc7c27e41ae89c4a7bcddaa3267bcd9b1 Mon Sep 17 00:00:00 2001 From: jx2lee Date: Mon, 27 Jan 2025 01:08:56 +0900 Subject: [PATCH] add example template dag_bundle_config_list --- airflow/config_templates/config.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/airflow/config_templates/config.yml b/airflow/config_templates/config.yml index 6b84cea704f84..2a86cf9c50180 100644 --- a/airflow/config_templates/config.yml +++ b/airflow/config_templates/config.yml @@ -2667,6 +2667,15 @@ dag_processor: "repo_url": "git@github.com:example.com/my-dags.git", "tracking_ref": "main", "refresh_interval": 0 + }, + { + "name": "my-git-repo", + "classpath": "airflow.dag_processing.bundles.git.GitDagBundle", + "kwargs": { + "subdir": "dags", + "repo_url": "https://github.com/example/my-dags.git", + "tracking_ref": "main", + "refresh_interval": 0 } ] default: >