From 711b17f0819bb0889d2a3b979184016117652d99 Mon Sep 17 00:00:00 2001 From: Derek Corniello Date: Wed, 29 Jul 2026 12:24:37 -0700 Subject: [PATCH] Run runtime CI on workflow changes The runtime_src filter listed source and manifests but not .github/workflows, so a PR that only edits a workflow skipped every job - including the job it edits. This PR is exactly that case: it rewrites the Downstream Compiler Smoke Test and that job was skipped, so the rewrite went unexercised. A check that does not run where it matters is the same shape as the bug this branch documents, so wire workflow edits into the filter. --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b3b088a..0b65d9a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,10 @@ jobs: - 'benches/**' - 'Cargo.toml' - 'Cargo.lock' + # A workflow-only change would otherwise skip every job here, + # including the one being changed - so CI edits would ship + # unexercised. + - '.github/workflows/**' rust_checks: name: Rust Checks