18 lines
440 B
YAML
18 lines
440 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@ec3a7ce113134d7a93b817d10a8272cb61118579 # renovate: tag=v2
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/delete-package-versions@5aa567b6f700ebac0a9f17fc162e163bda8912fd # renovate: tag=v2
|
|
with:
|
|
min-versions-to-keep: 200
|