From f635bb1084b20cf39cec562a920e10c06a3d75b5 Mon Sep 17 00:00:00 2001 From: Matt Kilgore Date: Sun, 5 Jan 2025 21:16:44 -0500 Subject: [PATCH] Update clear-stale-docker-images.yml --- .github/workflows/clear-stale-docker-images.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/clear-stale-docker-images.yml b/.github/workflows/clear-stale-docker-images.yml index 048878ef..e0f6f1a5 100644 --- a/.github/workflows/clear-stale-docker-images.yml +++ b/.github/workflows/clear-stale-docker-images.yml @@ -27,7 +27,7 @@ jobs: # Restrict deletions to images without specific tags. Supports Unix-shell style wildcards skip-tags: latest,latest-rootless,0.*,0.*-rootless,main,main-rootless,vnext,vnext-rootless,0,0-rootless # optional # Do not actually delete images. Print output showing what would have been deleted. - dry-run: true # optional, default is false + dry-run: false # optional, default is false # The token type. Can be either 'pat' or 'github-token'. If 'github-token', then image-names must the package name of repository from where this action is invoked. token-type: pat # optional, default is pat @@ -50,6 +50,6 @@ jobs: # Personal access token with read and delete scopes. token: ${{ secrets.CLEANUP_PAT }} # Do not actually delete images. Print output showing what would have been deleted. - dry-run: true # optional, default is false + dry-run: false # optional, default is false # The token type. Can be either 'pat' or 'github-token'. If 'github-token', then image-names must the package name of repository from where this action is invoked. token-type: pat # optional, default is pat