From 1375c8cd70cb42e07185b15ddfd100089a5ab1e6 Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Fri, 14 Nov 2025 11:55:28 +0800 Subject: [PATCH] ci: Update CI to only run docs test when only `docs` changed. (#1596) --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 797af910..7f1b0a09 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,9 @@ name: CI on: pull_request: + paths: + - "**" + - "!docs/**" push: branches: - main