Skip to content

Commit f5a4380

Browse files
authored
Automate Github Actions cache clean up (#1870)
* upgrade abseil to August 2025, Patch 1 * add gh action to clear all gh actions cache * add gh action to clear all gh actions cache
1 parent a401b75 commit f5a4380

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Clear all GH cache
2+
3+
on:
4+
workflow_dispatch
5+
6+
jobs:
7+
clear-cache:
8+
env:
9+
GH_TOKEN: ${{ github.token }}
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Clear all cache
13+
run: gh cache delete --all

0 commit comments

Comments
 (0)