From 0deffd37e7349a8fd6f78ed07e9ab50bd521d42d Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Wed, 25 Feb 2026 16:40:52 +0000 Subject: [PATCH] fix: change default DRY_RUN value to false in prune-container-images script --- scripts/prune-container-images.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prune-container-images.sh b/scripts/prune-container-images.sh index cf2e4e3f..27fe29bc 100755 --- a/scripts/prune-container-images.sh +++ b/scripts/prune-container-images.sh @@ -21,7 +21,7 @@ OWNER=${OWNER:-${GITHUB_REPOSITORY_OWNER:-Wikid82}} IMAGE_NAME=${IMAGE_NAME:-charon} KEEP_DAYS=${KEEP_DAYS:-30} KEEP_LAST_N=${KEEP_LAST_N:-30} -DRY_RUN=${DRY_RUN:-true} +DRY_RUN=${DRY_RUN:-false} PROTECTED_REGEX=${PROTECTED_REGEX:-'["^v","^latest$","^main$","^develop$"]'} LOG_PREFIX="[prune]"