Skip to content

Prune Actions caches #2

Prune Actions caches

Prune Actions caches #2

Workflow file for this run

name: Prune Actions caches
on:
schedule:
- cron: '0 21 * * *'
workflow_dispatch:
permissions:
contents: read
actions: write
jobs:
prune:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: rake ci:prune_caches
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}