Skip to content

Commit

Permalink
ci: add an option to clear cache (#11801)
Browse files Browse the repository at this point in the history
  • Loading branch information
OrKoN authored Feb 1, 2024
1 parent 0de9f59 commit 56a2de0
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/clear-caches.yml
Original file line number Diff line number Diff line change
@@ -0,0 1,31 @@
name: Clear cache

on:
workflow_dispatch:

permissions:
actions: write

jobs:
clear-cache:
runs-on: ubuntu-latest
steps:
- name: Clear cache
uses: actions/github-script@v7
with:
script: |
console.log("Querying")
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)
# Dry run
# github.rest.actions.deleteActionsCacheById({
# owner: context.repo.owner,
# repo: context.repo.repo,
# cache_id: cache.id,
# })
}
console.log("Clear completed")

0 comments on commit 56a2de0

Please sign in to comment.