From 04df6443a7366140dd56cd1aaf435a67107fc650 Mon Sep 17 00:00:00 2001 From: Rian Stockbower Date: Sat, 7 Feb 2026 14:55:47 -0500 Subject: [PATCH] ci: remove path filtering from CI workflow Run CI on all PRs regardless of which files changed, matching the pattern used by all other repos. Path filtering caused CI to silently skip on packaging/docs-only PRs, making it hard to interpret results. --- .github/workflows/ci.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86eaa50..4f0f6bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,19 +3,8 @@ name: CI on: push: branches: [main] - paths: - - '**.go' - - 'go.mod' - - 'go.sum' - - '.golangci.yml' - - '.github/workflows/ci.yml' pull_request: - paths: - - '**.go' - - 'go.mod' - - 'go.sum' - - '.golangci.yml' - - '.github/workflows/ci.yml' + branches: [main] jobs: build: