Skip to content

Commit

Permalink
Add weekly cleanup workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
chungyc committed Apr 13, 2023
1 parent fb4666c commit bc716ce
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/cleanup.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Cleanup
concurrency: cleanup
permissions: read-all

on:
workflow_dispatch:
schedule:
- cron: '23 4 * * 4'

jobs:
packages:
runs-on: ubuntu-latest
steps:
- name: Delete Package Versions
uses: actions/delete-package-versions@v4
with:
package-type: container
delete-only-untagged-versions: true

0 comments on commit bc716ce

Please sign in to comment.