From 6d0fd75ed51124702e37bfcf6e977da73f64b4e1 Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Fri, 31 Oct 2025 09:44:13 -0500 Subject: [PATCH] fix: run auto-update-dist workflow on all PRs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removes path filters so the workflow runs on every PR, ensuring dist/ is always up to date regardless of which files changed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/auto-update-dist.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/auto-update-dist.yml b/.github/workflows/auto-update-dist.yml index 1e9085b..a9402c1 100644 --- a/.github/workflows/auto-update-dist.yml +++ b/.github/workflows/auto-update-dist.yml @@ -2,11 +2,6 @@ name: Auto-update Distribution on: pull_request: - paths: - - 'package.json' - - 'package-lock.json' - - 'src/**' - - 'tsconfig.json' permissions: contents: read