add workflows to clean up repository (WIP)
This commit is contained in:
parent
8c2f401f2e
commit
7c4491ac6c
1 changed files with 20 additions and 0 deletions
20
.github/workflows/clean_repository.yml
vendored
Normal file
20
.github/workflows/clean_repository.yml
vendored
Normal 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
|
Loading…
Reference in a new issue