Delete purge_workflow_runs.yaml

This commit is contained in:
frostydad 2022-09-24 21:25:59 -06:00
parent 7b6ee08b2f
commit b537e6a328
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
name: Delete old workflow runs
on:
workflow_dispatch:
inputs:
days:
description: 'Number of days.'
required: true
default: "20"
jobs:
del_runs:
runs-on: ubuntu-latest
steps:
- name: Delete workflow runs
uses: Mattraks/delete-workflow-runs@main
with:
token: ${{ secrets.TOKEN_GITHUB }}
repository: ${{ github.repository }}
retain_days: ${{ github.event.inputs.days }}
keep_minimum_runs: 3