Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Delete old workflow runs #45

Delete old workflow runs

Delete old workflow runs #45

Workflow file for this run

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