This is an automated email from the ASF dual-hosted git repository. blaginin pushed a commit to branch bash-push in repository https://gitbox.apache.org/repos/asf/datafusion.git
commit 7b94c5578574e19c6b956b36b4e60147181697da Author: blaginin <[email protected]> AuthorDate: Sun Nov 9 16:22:08 2025 +0000 Fix glob pattern for markdown files in paths-filter The pattern `!**.md` doesn't correctly match markdown files in subdirectories. Changed to `!**/*.md` to properly exclude all .md files at any depth. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]> --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index d7571c3371..16baf5a79a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -49,7 +49,7 @@ jobs: filters: | code: - '**' - - '!**.md' + - '!**/*.md' - '!docs/**' - '!.github/ISSUE_TEMPLATE/**' - '!.github/pull_request_template.md' --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
