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 f9fd293fff3 Set DELETE_BEFORE_DAY in accordance with release period
(#24867)
f9fd293fff3 is described below
commit f9fd293fff3508dc2820858ada6970fc721b6a58
Author: Yi Hu <[email protected]>
AuthorDate: Tue Jan 3 11:55:36 2023 -0500
Set DELETE_BEFORE_DAY in accordance with release period (#24867)
---
.test-infra/tools/stale_dataflow_prebuilt_image_cleaner.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.test-infra/tools/stale_dataflow_prebuilt_image_cleaner.sh
b/.test-infra/tools/stale_dataflow_prebuilt_image_cleaner.sh
index 50d93497470..a9f7be945ff 100755
--- a/.test-infra/tools/stale_dataflow_prebuilt_image_cleaner.sh
+++ b/.test-infra/tools/stale_dataflow_prebuilt_image_cleaner.sh
@@ -24,7 +24,8 @@ set -euo pipefail
PUBLIC_REPOSITORIES=(beam-sdk beam_portability)
PRIVATE_REPOSITORIES=(java-postcommit-it python-postcommit-it jenkins)
-DELETE_BEFORE_DAY=$(date --iso-8601=s -d '30 days ago')
+# set as the same as 6-week release period
+DELETE_BEFORE_DAY=$(date --iso-8601=s -d '6 weeks ago')
REPOSITORIES=("${PUBLIC_REPOSITORIES[@]/#/gcr.io/apache-beam-testing/}"
"${PRIVATE_REPOSITORIES[@]/#/us.gcr.io/apache-beam-testing/}")