From a99820d922106918f4fc6851e4f5b82c97fefd2d Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Tue, 25 Mar 2025 10:52:54 -0400 Subject: [PATCH] [ci] Run stale cache cleanup every 6 hours Run this a bit more frequently so we don't thrash `main` caches as often. --- .github/workflows/shared_cleanup_stale_branch_caches.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/shared_cleanup_stale_branch_caches.yml b/.github/workflows/shared_cleanup_stale_branch_caches.yml index a6d50a7992..f6c532b485 100644 --- a/.github/workflows/shared_cleanup_stale_branch_caches.yml +++ b/.github/workflows/shared_cleanup_stale_branch_caches.yml @@ -3,7 +3,8 @@ name: (Shared) Cleanup Stale Branch Caches on: schedule: - - cron: 0 0 * * * + # Every 6 hours + - cron: 0 */6 * * * workflow_dispatch: permissions: {}