From 9f7e8f47d2338e72797e0974bc39df2f762c1ca7 Mon Sep 17 00:00:00 2001 From: Elliot DeNolf Date: Thu, 6 Mar 2025 10:16:57 -0500 Subject: [PATCH] ci: adjust paths filter for workflows, only look at main.yml (#11572) Refine the paths filter for workflows from `.github/workflows/**` to `.github/workflows/main.yml`. This is the only workflow that affects the build. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f46c5e9aee..e3da5ddd0d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -41,14 +41,14 @@ jobs: with: filters: | needs_build: - - '.github/workflows/**' + - '.github/workflows/main.yml' - 'packages/**' - 'test/**' - 'pnpm-lock.yaml' - 'package.json' - 'templates/**' needs_tests: - - '.github/workflows/**' + - '.github/workflows/main.yml' - 'packages/**' - 'test/**' - 'pnpm-lock.yaml'