Skip to content

Clear all Github Actions caches #34

Clear all Github Actions caches

Clear all Github Actions caches #34

Workflow file for this run

name: Clear all Github Actions caches
on:
schedule:
- cron: "0 23 28 * *"
repository_dispatch:
types: [backend_automation]
workflow_dispatch:
jobs:
my-job:
name: Delete all caches
runs-on: ubuntu-latest
steps:
- name: list caches
uses: edoapra/wipe-cache@main
with:
dry-run: 'true'
- name: clear caches
if: ${{ github.actor == github.repository_owner }}
uses: edoapra/wipe-cache@main
with:
dry-run: 'false'