This is an automated email from the ASF dual-hosted git repository.
yhu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 15b50e2a13f Fix clean up image skipped images if there are child path
(#36899)
15b50e2a13f is described below
commit 15b50e2a13fc8ad873757b3ccd1b83d3e8785b45
Author: Yi Hu <[email protected]>
AuthorDate: Thu Dec 11 10:25:53 2025 -0500
Fix clean up image skipped images if there are child path (#36899)
---
.test-infra/tools/stale_dataflow_prebuilt_image_cleaner.sh | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/.test-infra/tools/stale_dataflow_prebuilt_image_cleaner.sh
b/.test-infra/tools/stale_dataflow_prebuilt_image_cleaner.sh
index ed03ad6500c..5812caa6ed3 100755
--- a/.test-infra/tools/stale_dataflow_prebuilt_image_cleaner.sh
+++ b/.test-infra/tools/stale_dataflow_prebuilt_image_cleaner.sh
@@ -45,11 +45,10 @@ while [ -n "$REPOSITORIES" ]; do
if [ -n "$IMAGE_NAME" ]; then
PENDING_REPOSITORIES+=$IMAGE_NAME
PENDING_REPOSITORIES+=" "
- else
- echo IMAGES FOR REPO ${repository}
- IMAGE_NAMES+=$repository
- IMAGE_NAMES+=" "
fi
+ echo IMAGES FOR REPO ${repository}
+ IMAGE_NAMES+=$repository
+ IMAGE_NAMES+=" "
done
REPOSITORIES=("${PENDING_REPOSITORIES[@]}")
done