We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18f4953 commit 1123a2aCopy full SHA for 1123a2a
.github/workflows/clean-containers.yaml
@@ -20,13 +20,12 @@ jobs:
20
run: |
21
echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
22
- name: Delete 'PR' containers older than a week
23
- uses: snok/container-retention-policy@v2.2.1
+ uses: snok/container-retention-policy@v3.0.0
24
with:
25
- image-names: ${{ env.REGISTRY }}/${{ env.REPO }}
26
- filter-tags: sha-*,sha256:*
27
- cut-off: A week ago UTC
28
- account-type: org
29
- org-name: ${{ github.repository_owner }}
30
- keep-at-least: 1
31
- token: ${{ secrets.GH_REPO_TOKEN }}
+ image-names: ${{ env.REPO }}
+ image-tags: "sha-* sha256:* !latest"
+ cut-off: 1w
+ account: ${{ github.repository_owner }}
+ keep-n-most-recent: 1
+ token: ${{ secrets.GITHUB_TOKEN }}
32
timestamp-to-use: updated_at
0 commit comments