From a1bffdf76d56a90c19566fca7d0d791a0c822e1e Mon Sep 17 00:00:00 2001 From: Matt McKay Date: Fri, 6 Feb 2026 10:24:29 +1100 Subject: [PATCH] fix: remove environment.yml push trigger from cache workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In container mode, environment.yml has no effect on the build — the container's pre-installed environment is used. No need to trigger a cache rebuild when this file changes. The weekly schedule handles regular cache refreshes. --- .github/workflows/cache.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/cache.yml b/.github/workflows/cache.yml index 1eddffd..5e4f5b7 100644 --- a/.github/workflows/cache.yml +++ b/.github/workflows/cache.yml @@ -1,9 +1,5 @@ name: Build Cache on: - push: - branches: [main] - paths: - - 'environment.yml' schedule: - cron: '0 3 * * 0' # Weekly Sunday 3am workflow_dispatch: