This is an automated email from the ASF dual-hosted git repository.

xiaokang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-graphar.git


The following commit(s) were added to refs/heads/main by this push:
     new 163123f2 feat(ci): run pull request CI on `ready_for_review` and draft 
PRs (#896)
163123f2 is described below

commit 163123f2784ad72d9b0b0422f576267c60bb3f51
Author: Jinye Wu <[email protected]>
AuthorDate: Mon Mar 2 20:53:05 2026 +0800

    feat(ci): run pull request CI on `ready_for_review` and draft PRs (#896)
    
    * update
    
    * update
---
 .github/workflows/ci.yml     | 4 ++--
 .github/workflows/docs.yml   | 2 +-
 .github/workflows/spark.yaml | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index efc0d62d..81cf716c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -42,7 +42,7 @@ jobs:
     # TODO use ubuntu-latest
     name: Ubuntu 22.04 C++
     runs-on: ubuntu-22.04
-    if: ${{ !contains(github.event.pull_request.title, 'WIP') && 
!github.event.pull_request.draft }}
+    if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
     env:
       GAR_TEST_DATA: ${{ github.workspace }}/graphar-testing/
     steps:
@@ -192,7 +192,7 @@ jobs:
   macos:
     name: macos latest C++
     runs-on: macos-latest
-    if: ${{ !contains(github.event.pull_request.title, 'WIP') && 
github.event.pull_request.draft == false }}
+    if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
     env:
       GAR_TEST_DATA: ${{ github.workspace }}/graphar-testing/
     strategy:
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index e9e7921b..3e76f942 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -38,7 +38,7 @@ concurrency:
 jobs:
   build-website:
     runs-on: ubuntu-latest
-    if: ${{ !contains(github.event.pull_request.title, 'WIP') && 
github.event.pull_request.draft == false }}
+    if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
     steps:
       - uses: actions/checkout@v4
         with:
diff --git a/.github/workflows/spark.yaml b/.github/workflows/spark.yaml
index 0ce57b5e..e74e4c94 100644
--- a/.github/workflows/spark.yaml
+++ b/.github/workflows/spark.yaml
@@ -40,7 +40,7 @@ concurrency:
 jobs:
   test:
     runs-on: ubuntu-latest
-    if: ${{ !contains(github.event.pull_request.title, 'WIP') && 
github.event.pull_request.draft == false }}
+    if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
     env:
       GAR_TEST_DATA: ${{ github.workspace }}/graphar-testing/
     strategy:


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to