This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow-site-archive.git
The following commit(s) were added to refs/heads/main by this push:
new 763e469a53 Fix selective s3-> GH sync for non-providers (#15)
763e469a53 is described below
commit 763e469a53cd6be37f4a83157bfa5153a82bbe19
Author: Jarek Potiuk <[email protected]>
AuthorDate: Mon May 12 14:02:48 2025 +0200
Fix selective s3-> GH sync for non-providers (#15)
---
.github/workflows/s3-to-github.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/s3-to-github.yml
b/.github/workflows/s3-to-github.yml
index 7230d8d7aa..0db534aad5 100644
--- a/.github/workflows/s3-to-github.yml
+++ b/.github/workflows/s3-to-github.yml
@@ -89,7 +89,8 @@ jobs:
sparse_checkout=""
separator=""
for folder in ${DOCUMENTS_FOLDERS}; do
- if [[ "${folder}" != apache-airflow-providers* ]]; then
+ if [[ "${folder}" != apache-airflow-providers* && "${folder}" !=
"apache-airflow" \
+ && "${folder}" != "docker-stack" && "${folder}" !=
"helm-chart" ]]; then
folders="${folders}${separator}apache-airflow-providers-${folder/./-}"
echo "docs-archive/apache-airflow-providers-${folder/./-}" >>
${GITHUB_OUTPUT}
else