From a6e9fbfa8d00cd769969d12871d4a9fa5c880632 Mon Sep 17 00:00:00 2001 From: Steven Nguyen Date: Thu, 31 Aug 2023 09:26:42 -0700 Subject: [PATCH] Update the trigger for the cleanup actions cache workflow Workflow should trigger on pull_request.closed, not all pull_request. --- .github/workflows/cleanup-cache.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cleanup-cache.yml b/.github/workflows/cleanup-cache.yml index 16ed1e1210..6e20b8f879 100644 --- a/.github/workflows/cleanup-cache.yml +++ b/.github/workflows/cleanup-cache.yml @@ -1,12 +1,9 @@ name: Cleanup Cache -# for testing -on: [pull_request] - -# on: -# pull_request: -# types: -# - closed +on: + pull_request: + types: + - closed jobs: cleanup: