mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-21 19:53:05 +00:00
ci: add schedule to clear PR caches (#973)
This commit is contained in:
parent
9a696122c7
commit
e112e1231e
2 changed files with 22 additions and 1 deletions
6
.github/workflows/clear-workflow-cache.yml
vendored
6
.github/workflows/clear-workflow-cache.yml
vendored
|
@ -12,6 +12,8 @@ on:
|
|||
pull_request:
|
||||
types:
|
||||
- closed
|
||||
schedule:
|
||||
- cron: "0 11 * * *"
|
||||
|
||||
jobs:
|
||||
clear-cache:
|
||||
|
@ -25,7 +27,9 @@ jobs:
|
|||
fetch-depth: 1
|
||||
|
||||
- run: |
|
||||
if [[ -z "${{ github.event.inputs.id }}" ]]; then
|
||||
if [[ -n "${{ github.event.schedule }}" ]]; then
|
||||
python ./scripts/clear_cache.py keep-master
|
||||
elif [[ -z "${{ github.event.inputs.id }}" ]]; then
|
||||
python ./scripts/clear_cache.py ${{ github.event.pull_request.number }}
|
||||
else
|
||||
python ./scripts/clear_cache.py ${{ github.event.inputs.id }}
|
||||
|
|
|
@ -53,6 +53,23 @@ def main():
|
|||
print("URLError with delete.")
|
||||
else:
|
||||
print("Successfully deleted cache ID {}!".format(id))
|
||||
elif args[1] == "keep-main" or args[1] == "keep-master":
|
||||
print("Clearing all but default branch cache.")
|
||||
with urlopen(cache_list_request(key)) as response:
|
||||
response = json.load(response)
|
||||
caches = response["actions_caches"]
|
||||
for cache in caches:
|
||||
if not ("master" in cache["ref"] or "main" in cache["ref"]):
|
||||
id = cache["id"]
|
||||
try:
|
||||
print("Deleting ID {}...".format(id))
|
||||
urlopen(delete_cache_request(key, id))
|
||||
except HTTPError as e:
|
||||
print("HTTPError with delete, error code {}.".format(e.code))
|
||||
except URLError as _:
|
||||
print("URLError with delete.")
|
||||
else:
|
||||
print("Successfully deleted cache ID {}!".format(id))
|
||||
elif args[1] == "main" or args[1] == "master" or args[1] == "all":
|
||||
print("Clearing all caches.")
|
||||
with urlopen(cache_list_request(key)) as response:
|
||||
|
|
Loading…
Reference in a new issue