Skip to content

Delete old workflow runs #22

Delete old workflow runs

Delete old workflow runs #22

name: Delete old workflow runs
on:
workflow_dispatch:
schedule:
- cron: "15 15 3 * *" # At 03:15 PM, on day 3 of the month
jobs:
del_runs:
name: Delete Old Workflows
runs-on: ubuntu-latest
permissions:
actions: write
contents: read
steps:
- name: Delete workflow runs
uses: Mattraks/[email protected]
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
retain_days: 60
keep_minimum_runs: 0