mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
Add job to delete old images (#10332)
This commit is contained in:
parent
c721e7cfa9
commit
a50e955b3e
15
.github/workflows/stale.yml
vendored
15
.github/workflows/stale.yml
vendored
@ -24,3 +24,18 @@ jobs:
|
|||||||
operations-per-run: 120
|
operations-per-run: 120
|
||||||
- name: Print outputs
|
- name: Print outputs
|
||||||
run: echo ${{ join(steps.stale.outputs.*, ',') }}
|
run: echo ${{ join(steps.stale.outputs.*, ',') }}
|
||||||
|
|
||||||
|
clean_ghcr:
|
||||||
|
name: Delete outdated dev container images
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Delete old images
|
||||||
|
uses: snok/container-retentation-policy@v2
|
||||||
|
with:
|
||||||
|
image-names: dev-*
|
||||||
|
cut-off: 60 days ago UTC
|
||||||
|
keep-at-least: 5
|
||||||
|
account-type: personal
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
token-type: github-token
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user