puppeteer/.github/workflows/clear-caches.yml

41 lines
1.1 KiB
YAML
Raw Normal View History

name: Clear cache
on:
2024-02-01 09:33:52 +00:00
schedule:
# Run everyday at: https://crontab.guru/#0_6_*_*_*.
- cron: '0 6 * * *'
workflow_dispatch:
permissions:
actions: write
jobs:
clear-cache:
runs-on: ubuntu-latest
steps:
2024-02-01 09:33:52 +00:00
- name: Clear Firefox cache
2024-02-08 09:28:49 +00:00
uses: actions/github-script@60a0d83 # v7.0.1
with:
script: |
console.log("Querying")
2024-02-08 09:28:49 +00:00
const caches = await github.paginate(
github.rest.actions.getActionsCacheList,
{
owner: context.repo.owner,
repo: context.repo.repo,
}
)
console.log(caches.length)
for (const cache of caches) {
2024-02-01 09:33:52 +00:00
if (cache.key.toLowerCase().startsWith('firefox')) {
console.log(cache)
github.rest.actions.deleteActionsCacheById({
owner: context.repo.owner,
repo: context.repo.repo,
cache_id: cache.id,
})
}
}
console.log("Clear completed")