diff --git a/.github/workflows/cache.yml b/.github/workflows/cache.yml new file mode 100644 index 000000000..02e144952 --- /dev/null +++ b/.github/workflows/cache.yml @@ -0,0 +1,16 @@ +name: Clear all Github actions caches +on: + workflow_dispatch: + +permissions: + actions: write + +jobs: + clear-cache: + name: Delete all caches + runs-on: ubuntu-20.04 + steps: + - name: Clear caches + uses: easimon/wipe-cache@main + with: + github-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file