Skip to content

Delete old workflow runs #15

Delete old workflow runs

Delete old workflow runs #15

name: Delete old workflow runs
on:
schedule:
- cron: '0 13 19 * *'
# Run monthly, at 13:00 on the 19th day of every month.
jobs:
del_runs:
runs-on: ubuntu-latest
steps:
- name: Delete workflow runs
uses: Mattraks/delete-workflow-runs@v2
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
retain_days: 10
keep_minimum_runs: 2