This is an automated email from the ASF dual-hosted git repository.
eladkal pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 87a23f3d21d Adds match_glob to template_fields in GCS operators
(#61819)
87a23f3d21d is described below
commit 87a23f3d21d8efb39dd81ffbb38bdd00b9443485
Author: Yuhua Ni <[email protected]>
AuthorDate: Mon Mar 16 05:02:25 2026 -0400
Adds match_glob to template_fields in GCS operators (#61819)
* Update gcs_to_gcs.py
Adds match_glob to template_fields in GCSToGCSOperator
* Update gcs_to_s3.py
Adds match_glob to template_fields
---
providers/amazon/src/airflow/providers/amazon/aws/transfers/gcs_to_s3.py | 1 +
.../google/src/airflow/providers/google/cloud/transfers/gcs_to_gcs.py | 1 +
2 files changed, 2 insertions(+)
diff --git
a/providers/amazon/src/airflow/providers/amazon/aws/transfers/gcs_to_s3.py
b/providers/amazon/src/airflow/providers/amazon/aws/transfers/gcs_to_s3.py
index 76de1a3542a..867f2d3d8cb 100644
--- a/providers/amazon/src/airflow/providers/amazon/aws/transfers/gcs_to_s3.py
+++ b/providers/amazon/src/airflow/providers/amazon/aws/transfers/gcs_to_s3.py
@@ -98,6 +98,7 @@ class GCSToS3Operator(BaseOperator):
"dest_s3_key",
"google_impersonation_chain",
"gcp_user_project",
+ "match_glob",
)
ui_color = "#f0eee4"
diff --git
a/providers/google/src/airflow/providers/google/cloud/transfers/gcs_to_gcs.py
b/providers/google/src/airflow/providers/google/cloud/transfers/gcs_to_gcs.py
index 8391fe040c5..5b32ac83c5e 100644
---
a/providers/google/src/airflow/providers/google/cloud/transfers/gcs_to_gcs.py
+++
b/providers/google/src/airflow/providers/google/cloud/transfers/gcs_to_gcs.py
@@ -176,6 +176,7 @@ class GCSToGCSOperator(BaseOperator):
"destination_object",
"delimiter",
"impersonation_chain",
+ "match_glob",
)
ui_color = "#f0eee4"