Skip to content

Commit

Permalink
Create prune.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
danbryce authored Jan 28, 2025
1 parent 51d0939 commit b926a5a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/prune.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on:
schedule:
- cron: '0 0 * * *' # Run daily at midnight

jobs:
prune:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Prune Docker builder cache
run: docker buildx prune -f

0 comments on commit b926a5a

Please sign in to comment.