From cd15482537c1ac2e137cdfbbd0a2da69ad8dfe14 Mon Sep 17 00:00:00 2001 From: Angie Jones Date: Tue, 12 Aug 2025 18:52:10 -0700 Subject: [PATCH] ci: fix markdown file pattern to skip builds for all .md files (#4061) --- .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 09ee488f66..e6273d2143 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