mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 09:16:30 -05:00
ci: add docker image cleanup workflow
This adds a daily CI workflow to delete old tags from the 'hedgedoc-ci' image. Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
5078b863c6
commit
05b8987747
1 changed files with 24 additions and 0 deletions
24
.github/workflows/docker-cleanup.yml
vendored
Normal file
24
.github/workflows/docker-cleanup.yml
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
# SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
||||
#
|
||||
# SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
name: Delete old container images
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * *' # every day at midnight
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
clean-ghcr:
|
||||
name: Cleanup CI containers
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Cleanup CI containers
|
||||
uses: snok/container-retention-policy@v1
|
||||
with:
|
||||
image-names: ${{ github.event.repository.name }}-ci
|
||||
cut-off: A day ago UTC
|
||||
account-type: org
|
||||
org-name: ${{ github.repository_owner }}
|
||||
token: ${{ secrets.PAT_IMAGE_CLEANUP }}
|
Loading…
Reference in a new issue