Skip to content

Workflow maintenance #13

Workflow maintenance

Workflow maintenance #13

Workflow file for this run

name: Workflow maintenance
on:
workflow_dispatch:
schedule:
- cron: "0 1 1 * *"
jobs:
cleanup:
name: Delete old workflow 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: 30
keep_minimum_runs: 6