mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
36 lines
983 B
YAML
36 lines
983 B
YAML
name: Clear cache
|
|
|
|
on:
|
|
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:
|
|
- name: Clear Firefox 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) {
|
|
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")
|