Skip to content

Commit f5b9861

Browse files
authored
Add workflow to clear caches
1 parent a2b0e3c commit f5b9861

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/cache.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Clear all Github actions caches
2+
on:
3+
workflow_dispatch:
4+
5+
permissions:
6+
actions: write
7+
8+
jobs:
9+
clear-cache:
10+
name: Delete all caches
11+
runs-on: ubuntu-20.04
12+
steps:
13+
- name: Clear caches
14+
uses: easimon/wipe-cache@main
15+
with:
16+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)