From 3813c60e962dca1c761138decbf98b4973474e0b Mon Sep 17 00:00:00 2001 From: angiejones Date: Tue, 12 Aug 2025 18:25:03 -0700 Subject: [PATCH] ci: fix markdown file pattern to skip builds for all .md files The previous pattern '*.md' only matched markdown files in the root directory, but markdown files in subdirectories (like ui/desktop/README.md) were still triggering code builds. This updates both the docs-only and code filters to use '**/*.md' to properly match all markdown files recursively. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 09ee488f660d..e6273d2143eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,11 +29,11 @@ jobs: filters: | docs-only: - 'documentation/**' - - '*.md' + - '**/*.md' code: - '**' - '!documentation/**' - - '!*.md' + - '!**/*.md' rust-format: name: Check Rust Code Format