Scheduled cleanup old workflow runs #71
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Scheduled cleanup old workflow runs | |
on: | |
schedule: | |
- cron: '0 0 * * 0' | |
# At 00:00 on Sunday. | |
jobs: | |
del_runs: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write | |
steps: | |
- name: Delete workflow runs | |
uses: Mattraks/[email protected] | |
with: | |
token: ${{ github.token }} | |
repository: ${{ github.repository }} | |
retain_days: 15 | |
keep_minimum_runs: 10 |