We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc9bec0 commit dba0e4fCopy full SHA for dba0e4f
.github/workflows/clean-main-images.yml
@@ -2,7 +2,7 @@ name: Cleanup main images
2
3
on:
4
schedule:
5
- - cron: "5 * * * *"
+ - cron: '5 1 * * *'
6
workflow_dispatch:
7
8
env:
@@ -12,7 +12,7 @@ env:
12
13
jobs:
14
clean:
15
- name: "Clean main images"
+ name: 'Clean main images'
16
runs-on: ubuntu-latest
17
permissions:
18
packages: write
@@ -21,7 +21,7 @@ jobs:
21
uses: actions/delete-package-versions@v5
22
with:
23
package-name: ${{ env.IMAGE_NAME }}
24
- package-type: "container"
+ package-type: 'container'
25
min-versions-to-keep: ${{ env.KEEP_X_IMAGES }}
26
# Ignore any version that does NOT start with 'main-'
27
- ignore-versions: "^(?!main-).*$"
+ ignore-versions: '^(?!main-).*$'
0 commit comments