mirror of
https://github.com/truecharts/charts.git
synced 2026-07-06 16:01:23 -03:00
18 lines
426 B
YAML
18 lines
426 B
YAML
name: "Prune Old Releases"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
housekeeping:
|
|
runs-on: ubuntu-latest
|
|
name: "prune old releases"
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/delete-package-versions@e5bc658cc4c965c472efe991f8beea3981499c55 # v5
|
|
with:
|
|
min-versions-to-keep: 200
|