From 6d2b7d893a935b00fa3429b1792b7ed1b645e36d Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Sat, 9 May 2026 09:23:51 +0000 Subject: [PATCH] ci: drop paths-ignore from test.yml and tests-e2e.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These workflows are configured as required status checks in branch protection. With paths-ignore matching the PR diff, the workflow doesn't trigger and no status is reported — branch protection then blocks the PR with "Expected — Waiting for status to be reported" indefinitely. Especially common for backend-only PRs since the ignore list included backend/**. Run the full test suite on every PR. Cost is ~5 min per PR for tests-linux + ~similar for tests-apple + the e2e backend smoke; small trade for unblocking PR merges. Workflows affected: - tests-linux (1.26.x), tests-apple (1.26.x) in test.yml - tests-e2e-backend (1.25.x) in tests-e2e.yml Other workflows that still have paths-ignore (none currently in the required-checks list) are left as-is — adding them to required later would re-introduce the same problem. Assisted-by: Claude:claude-opus-4-7 Signed-off-by: Ettore Di Giacinto --- .github/workflows/test.yml | 6 ------ .github/workflows/tests-e2e.yml | 6 ------ 2 files changed, 12 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 578a60255..d516307f2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,12 +3,6 @@ name: 'tests' on: pull_request: - paths-ignore: - - 'docs/**' - - 'examples/**' - - 'README.md' - - '**/*.md' - - 'backend/**' push: branches: - master diff --git a/.github/workflows/tests-e2e.yml b/.github/workflows/tests-e2e.yml index 7b9435626..90d7392d9 100644 --- a/.github/workflows/tests-e2e.yml +++ b/.github/workflows/tests-e2e.yml @@ -3,12 +3,6 @@ name: 'E2E Backend Tests' on: pull_request: - paths-ignore: - - 'docs/**' - - 'examples/**' - - 'README.md' - - '**/*.md' - - 'backend/**' push: branches: - master