Skip to content

Cleanup

Cleanup #881

Workflow file for this run

name: Cleanup
on:
push:
paths:
# Workflow file itself
- '.github/workflows/Cleanup.yml'
schedule:
- cron: '0 0 * * *' # Run daily, at 00:00
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
cleanup_runs:
runs-on: ubuntu-24.04
steps:
- name: Delete workflow runs
uses: Mattraks/delete-workflow-runs@v2
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
retain_days: 90
keep_minimum_runs: 0