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

erickguan pushed a commit to branch main
in repository 
https://gitbox.apache.org/repos/asf/opendal-ghac-service-continuous-integration.git

commit e306545338000f69a07c0799da885cc5cffd372a
Author: Erick Guan <[email protected]>
AuthorDate: Sat Jun 27 23:52:59 2026 +0800

    Allow workflow call
---
 .github/workflows/service-ghac-v2-test.yml | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/.github/workflows/service-ghac-v2-test.yml 
b/.github/workflows/service-ghac-v2-test.yml
index d4a66ef..2007bf3 100644
--- a/.github/workflows/service-ghac-v2-test.yml
+++ b/.github/workflows/service-ghac-v2-test.yml
@@ -19,33 +19,28 @@ name: OpenDAL GHAC v2 Test
 run-name: opendal-service-ghac-v2-test
 
 on:
-  workflow_dispatch:
+  workflow_call:
     inputs:
-      repository:
-        description: "OpenDAL repository to checkout"
-        required: true
-        type: string
       ref:
         description: "OpenDAL ref to test"
         required: true
         type: string
 
 permissions:
-  actions: write
   contents: read
 
 jobs:
   ghac_v2:
-    name: ghac v2
     runs-on: ubuntu-latest
     permissions:
-      actions: write
       contents: read
     steps:
       - uses: actions/checkout@v6
         with:
-          repository: ${{ inputs.opendal_repository }}
-          ref: ${{ inputs.opendal_ref }}
+          repository: apache/opendal
+          ref: ${{ inputs.ref }}
 
       - name: Run service ghac test
         uses: ./github/actions/test_service_ghac_v2
+        with:
+          github_token: ${{ secrets.GITHUB_TOKEN }}

Reply via email to