add workflows to clean up repository (WIP)

This commit is contained in:
Jean-Christian Denis 2024-12-03 19:08:07 +01:00
parent 8c2f401f2e
commit 7c4491ac6c
Signed by: JcDenis
GPG key ID: 1B5B8C5B90B6C951

20
.github/workflows/clean_repository.yml vendored Normal file
View file

@ -0,0 +1,20 @@
name: Delete old workflow runs
on:
schedule:
- cron: '45 11 * * 0'
workflow_dispatch:
jobs:
del_runs:
runs-on: ubuntu-latest
permissions:
actions: write
contents: read
steps:
- name: Delete workflow runs
uses: Mattraks/delete-workflow-runs@v2
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
retain_days: 30
keep_minimum_runs: 7