Skip to content

Delete old workflow runs #70

Delete old workflow runs

Delete old workflow runs #70

name: Delete old workflow runs
on:
workflow_dispatch:
schedule:
- cron: '0 2 * * 1'
# Run weekly, at 02:00 on the 1st day of week.
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: 0
keep_minimum_runs: 2