-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: add a cleanup for the images * ci: add it as a schedule * docs: update for the current images
- Loading branch information
1 parent
82089ed
commit ee80fc5
Showing
2 changed files
with
27 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Cleaner | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 0 12,25 * *" | ||
|
||
jobs: | ||
cleanup: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
attestations: write | ||
id-token: write | ||
steps: | ||
- uses: actions/delete-package-versions@v5 | ||
with: | ||
package-name: goblin | ||
package-type: container | ||
min-versions-to-keep: 10 | ||
ignore-versions: '(v?\d+\.\d+\.\d+|latest|(nightly[-]\w+))' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters