Fix typo in cache-clearing workflow

PiperOrigin-RevId: 595424484
pull/15257/head
Mike Kruskal 1 year ago committed by Copybara-Service
parent 2bf62b1873
commit 807f00b4db
  1. 4
      .github/workflows/clear_caches.yml

@ -3,7 +3,7 @@ name: Clear expensive caches to prevent unbounded growth
on:
schedule:
# Run every 4 months at 10 AM UTC (2 AM PDT)
- cron: 0 10 1 */4 *
- cron: 0 10 5 */4 *
# manual
workflow_dispatch:
@ -31,5 +31,5 @@ jobs:
- name: Create an empty cache with a single file
run: |
rm -rf .repository-cache
mkdir -p .repository-cache'
mkdir -p .repository-cache
touch .repository-cache/reset_file

Loading…
Cancel
Save