Clear Cache #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://stackoverflow.com/a/73556714 | |
name: Clear Cache | |
on: | |
workflow_dispatch: | |
permissions: | |
actions: write | |
jobs: | |
clear-cache: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clear cache | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
console.log("About to clear") | |
const response = await github.rest.actions.getActionsCacheList({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
page: 1, | |
per_page: 1 | |
}) | |
const pages = (function() { | |
if (typeof response.headers.link !== 'undefined') { | |
return response.headers.link.split(">").slice(-2)[0].split('=').slice(-1)[0] | |
} | |
return 1; | |
})(); | |
console.log(pages) | |
console.log(response) | |
for (const cache of response.data.actions_caches) { | |
console.log(cache) | |
github.rest.actions.deleteActionsCacheById({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
cache_id: cache.id, | |
}) | |
} | |
console.log("Clear completed") |