3d0f5ea21c
Bumps [tibdex/github-app-token](https://github.com/tibdex/github-app-token) from 1 to 2. - [Release notes](https://github.com/tibdex/github-app-token/releases) - [Commits](https://github.com/tibdex/github-app-token/compare/v1...v2) --- updated-dependencies: - dependency-name: tibdex/github-app-token dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
28 lines
788 B
YAML
28 lines
788 B
YAML
name: ghcr-retention
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *" # every day at midnight
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
clean-ghcr:
|
|
name: Delete old unused container images
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- id: generate_token
|
|
uses: tibdex/github-app-token@v2
|
|
with:
|
|
app_id: ${{ secrets.GH_APP_ID }}
|
|
private_key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
- name: Delete 'dev' containers older than a week
|
|
uses: snok/container-retention-policy@v2
|
|
with:
|
|
image-names: dev-server,dev-ldap,dev-proxy
|
|
cut-off: One week ago UTC
|
|
account-type: org
|
|
org-name: goauthentik
|
|
untagged-only: false
|
|
token: ${{ steps.generate_token.outputs.token }}
|
|
skip-tags: gh-next,gh-main
|