Remove old artifacts #11
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
name: Remove old artifacts | |
on: | |
schedule: | |
- cron: '0 12 * * *' # every day at 12:00 UTC | |
workflow_dispatch: | |
jobs: | |
remove_old_artifacts: | |
name: Remove old artifacts | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
timeout-minutes: 10 # stop the task if it takes longer | |
steps: | |
- name: Delete old package versions of ${{ github.repository }} | |
uses: actions/[email protected] | |
with: | |
package-name: ${{ github.repository }} | |
package-type: container | |
token: ${{ secrets.GITHUB_TOKEN }} | |
min-versions-to-keep: 10 | |
ignore-versions: v([0-9]+\.?)+$ | |
- name: Delete old package versions of helm/${{ github.repository }} | |
uses: actions/[email protected] | |
with: | |
package-name: helm/${{ github.repository }} | |
package-type: container | |
token: ${{ secrets.GITHUB_TOKEN }} | |
min-versions-to-keep: 10 | |
ignore-versions: v([0-9]+\.?)+$ |