Skip to content

Commit

Permalink
Add manual workflow to clear all caches
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Nov 4, 2024
1 parent 55fc91e commit ebf0da1
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/clear-caches.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Clear caches

on:
workflow_dispatch:

permissions:
actions: write

jobs:
clear-cache:
runs-on: ubuntu-latest
steps:
- name: Clear caches
uses: actions/github-script@v7
with:
script: |
const caches = await github.rest.actions.getActionsCacheList({
owner: context.repo.owner,
repo: context.repo.repo,
})
for (const cache of caches.data.actions_caches) {
console.log(cache)
github.rest.actions.deleteActionsCacheById({
owner: context.repo.owner,
repo: context.repo.repo,
cache_id: cache.id,
})
}

0 comments on commit ebf0da1

Please sign in to comment.