Workflow Cleanup #98
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: Workflow Cleanup | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 2 * * *" # daily at 02:00 UTC | |
| permissions: | |
| contents: read | |
| actions: write | |
| jobs: | |
| build: | |
| name: Workflow Cleanup | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Workflow Cleanup | |
| uses: fgrzl/actions/[email protected] |