ci: add log line for cache clearing

This commit is contained in:
ClementTsang 2022-11-06 03:48:45 -05:00
parent 442dba84e3
commit d613fbdee9
No known key found for this signature in database
GPG Key ID: DC3B7867D8D97095
1 changed files with 2 additions and 2 deletions

View File

@ -29,14 +29,14 @@ def delete_cache_request(key, id):
def main():
args = sys.argv
env = os.environ
key = env["GITHUB_TOKEN"]
pr_id = args[1]
pr_id = int(args[1])
ref = "refs/pull/{}/merge".format(pr_id)
print("Clearing any caches generated by PR {}".format(pr_id))
with urlopen(cache_list_request(key)) as response:
response = json.load(response)
caches = response["actions_caches"]