From f16de197f89f38d3375269cf9333a10c398641ee Mon Sep 17 00:00:00 2001 From: grokspawn Date: Fri, 24 Jul 2026 16:13:49 -0500 Subject: [PATCH] scope PR CI workflow to only run on catalog changes The PR validation workflow (Validate Contributor, Validate Contribution) is only relevant when catalog content is modified. Adding a paths filter prevents the workflow from running on unrelated PRs like dependabot action version bumps. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/build-verify-on-PR.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-verify-on-PR.yml b/.github/workflows/build-verify-on-PR.yml index ab7dbd2..de849a6 100644 --- a/.github/workflows/build-verify-on-PR.yml +++ b/.github/workflows/build-verify-on-PR.yml @@ -2,8 +2,10 @@ name: CI on: pull_request: - branches: + branches: - '**' + paths: + - 'catalog/**' jobs: build: