This is an automated email from the ASF dual-hosted git repository. yuqi4733 pushed a commit to branch internal-main in repository https://gitbox.apache.org/repos/asf/gravitino.git
commit af43fa2dd34256a1cbc8fd487a3ddbe50acf2af6 Author: danhuawang <[email protected]> AuthorDate: Tue Oct 21 11:36:54 2025 +0800 missing condition for gvfs ci --- .github/workflows/gvfs-fuse-build-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gvfs-fuse-build-test.yml b/.github/workflows/gvfs-fuse-build-test.yml index d2fd3256a8..85d8b2d904 100644 --- a/.github/workflows/gvfs-fuse-build-test.yml +++ b/.github/workflows/gvfs-fuse-build-test.yml @@ -16,7 +16,7 @@ concurrency: jobs: changes: runs-on: ubuntu-latest - if: needs.changes.outputs.source_changes == 'true' + if: contains(github.event.pull_request.labels.*.name, 'run-ci') steps: - uses: actions/checkout@v4 - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36
