From 120d87320e819367aae32bc1815554e5bbfeea48 Mon Sep 17 00:00:00 2001 From: chaodu-agent Date: Wed, 13 May 2026 21:25:17 +0000 Subject: [PATCH] fix(ci): add gateway/Cargo.lock to CI path triggers Explicitly list gateway/Cargo.lock in the pull_request paths filter so dependency-only updates (e.g. Dependabot PRs) are clearly covered by the gateway CI job. While gateway/** already matches this path, listing it explicitly makes the intent clear and prevents accidental removal if the glob is later narrowed. Closes #805 --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b2c13804..59d15ae2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,7 @@ on: paths: - "src/**" - "gateway/**" + - "gateway/Cargo.lock" - "Cargo.toml" - "Cargo.lock" - "Dockerfile*"