2024-02-01 09:25:24 +00:00
|
|
|
name: Clear cache
|
|
|
|
|
|
|
|
on:
|
2024-02-01 09:33:52 +00:00
|
|
|
schedule:
|
|
|
|
# Run everyday at: https://crontab.guru/#0_6_*_*_*.
|
|
|
|
- cron: '0 6 * * *'
|
2024-02-01 09:25:24 +00:00
|
|
|
workflow_dispatch:
|
|
|
|
|
2024-02-29 09:03:15 +00:00
|
|
|
permissions: read-all
|
2024-02-01 09:25:24 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
clear-cache:
|
|
|
|
runs-on: ubuntu-latest
|
2024-02-29 09:03:15 +00:00
|
|
|
permissions:
|
|
|
|
actions: write
|
2024-02-01 09:25:24 +00:00
|
|
|
steps:
|
2024-02-01 09:33:52 +00:00
|
|
|
- name: Clear Firefox cache
|
2024-02-12 11:48:41 +00:00
|
|
|
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
|
2024-02-01 09:25:24 +00:00
|
|
|
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,
|
|
|
|
})
|
|
|
|
}
|
2024-02-01 09:25:24 +00:00
|
|
|
}
|
|
|
|
console.log("Clear completed")
|