-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove container images that have not been pulled for over a year
- Loading branch information
1 parent
092a12f
commit d05ac15
Showing
1 changed file
with
22 additions
and
0 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: 'Delete unused snapshot container images' | ||
|
||
on: | ||
schedule: | ||
- cron: '0 12 1 * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
container-image: | ||
if: github.repository_owner == 'opentripplanner' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Delete unused container images | ||
env: | ||
CONTAINER_REPO: opentripplanner/opentripplanner | ||
CONTAINER_REGISTRY_USER: otpbot | ||
CONTAINER_REGISTRY_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
run: | | ||
# remove all snapshot container images that have not been pulled for over a year | ||
# --keep-semver makes sure that any image with a x.y.z version scheme is unaffected by this | ||
pip install prune-container-repo==0.0.3 | ||
prune-container-repo -u ${CONTAINER_REGISTRY_USER} -r ${CONTAINER_REPO} --days=365 --keep-semver --activate |