Skip to content

Delete old workflow runs #283

Delete old workflow runs

Delete old workflow runs #283

Workflow file for this run

name: Delete old workflow runs
on:
schedule:
- cron: '0 0 */3 * *'
workflow_dispatch:
jobs:
del_runs:
runs-on: ubuntu-latest
steps:
- name: Delete workflow runs
uses: Mattraks/delete-workflow-runs@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ github.repository }}
retain_days: 0
keep_minimum_runs: 3