Clean Workflow Logs #149
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: Clean Workflow Logs | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 0 * * 1" # Runs "At 00:00 on Monday." (see https://crontab.guru) | |
| jobs: | |
| clean-logs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: igorjs/gh-actions-clean-workflow@v7 | |
| with: | |
| runs_older_than: "14" # optional, default value: "7" | |
| token: ${{ github.token }} |