From 7b3d135df62b60d08fa8c7d46f7334ac1a5cf017 Mon Sep 17 00:00:00 2001 From: Oliver Eyton-Williams Date: Fri, 13 Feb 2026 08:41:10 +0100 Subject: [PATCH] feat: stop using turbo cache for renovate branches (#65862) --- .github/actions/setup-turbo-cache/action.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/actions/setup-turbo-cache/action.yml b/.github/actions/setup-turbo-cache/action.yml index 2f36d84fefc..35d712a6d5c 100644 --- a/.github/actions/setup-turbo-cache/action.yml +++ b/.github/actions/setup-turbo-cache/action.yml @@ -4,8 +4,6 @@ # ├─────────────────────────┼─────────────────┼──────────────────┤ # │ main (push) │ YES │ YES │ # ├─────────────────────────┼─────────────────┼──────────────────┤ -# │ renovate/* │ YES │ YES │ -# ├─────────────────────────┼─────────────────┼──────────────────┤ # │ PRs / temp-* / hotfix-* │ YES │ NO │ # ├─────────────────────────┼─────────────────┼──────────────────┤ # │ prod-* │ NO │ NO │ @@ -63,12 +61,10 @@ runs: echo "TURBO_TELEMETRY_DISABLED=1" >> $GITHUB_ENV # Determine if this context should have write access - # Write access: main branch push OR renovate branches + # Write access: main branch push # Read-only: PRs and other branches (can read from cache, can't pollute it) if [[ "$GITHUB_REF_NAME" == "main" && "$GITHUB_EVENT_NAME" == "push" ]]; then echo "::notice::Main branch push - Turbo cache READ/WRITE enabled" - elif [[ "$GITHUB_REF_NAME" == renovate/* ]]; then - echo "::notice::Renovate branch - Turbo cache READ/WRITE enabled" else # All other contexts: read-only # Use TURBO_CACHE=remote:r for read-only remote cache (local still read/write)