Skip to content

Delete old workflow runs #7

Delete old workflow runs

Delete old workflow runs #7

Workflow file for this run

name: Delete old workflow runs
on:
schedule:
- cron: '0 15 14 * *'
# Run monthly, at 15:00 on the 14t day of month. (testing)
jobs:
del_runs:
runs-on: ubuntu-latest
permissions:
actions: write
steps:
- name: Delete workflow runs
uses: Mattraks/delete-workflow-runs@v2
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
retain_days: 30
keep_minimum_runs: 6