This is an automated email from the ASF dual-hosted git repository.
jerryshao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new 317d2cae5e [#10835] improvement(CI): Do not ignore changes in
markdown files to avoid possible RAT problem (#10836)
317d2cae5e is described below
commit 317d2cae5e5ee84f30a7abaf6b769a9bea88f4c1
Author: Qi Yu <[email protected]>
AuthorDate: Fri Apr 24 15:32:40 2026 +0800
[#10835] improvement(CI): Do not ignore changes in markdown files to avoid
possible RAT problem (#10836)
### What changes were proposed in this pull request?
This pull request makes a small update to the GitHub Actions workflow
configuration by adjusting which file changes will trigger the workflow.
Markdown files (`.md` and `.mdx`) are no longer ignored, so changes to
these files will now trigger the workflow.
### Why are the changes needed?
To avoid possible RAT problem
Fix: #10835
### Does this PR introduce _any_ user-facing change?
N/A
### How was this patch tested?
CI.
---
.github/workflows/build.yml | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index a5a44a776d..dc43ecb48b 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -6,15 +6,11 @@ on:
push:
branches: [ "main", "branch-*" ]
paths-ignore:
- - '**/*.md'
- - '**/*.mdx'
- 'docs/assets/**'
- 'web-v2/**'
pull_request:
branches: [ "main", "branch-*" ]
paths-ignore:
- - '**/*.md'
- - '**/*.mdx'
- 'docs/assets/**'
- 'web-v2/**'
@@ -52,8 +48,8 @@ jobs:
- '**/*.rs'
- '**/resources/**'
- '**/src/**'
- - '!**/*.md'
- - '!**/*.mdx'
+ - '**/*.md'
+ - '**/*.mdx'
- '!docs/**/*.png'
- '!docs/**/*.svg'
- '!docs/**/*.jpg'