Delete old workflow runs automatic #217
This file contains hidden or 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: Delete old workflow runs automatic | |
| on: | |
| schedule: | |
| - cron: '0 0 1,7,14,21 * *' | |
| workflow_dispatch: | |
| inputs: | |
| days: | |
| description: 'Number of days.' | |
| required: true | |
| default: 300 | |
| jobs: | |
| del_runs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Delete workflow runs | |
| uses: Mattraks/delete-workflow-runs@main | |
| with: | |
| token: ${{ secrets.SECRETTOKEN }} | |
| repository: buzzqw/TUS | |
| retain_days: 300 | |
| keep_minimum_runs: 100 |