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

leerho pushed a commit to branch workflows
in repository https://gitbox.apache.org/repos/asf/datasketches-memory.git


The following commit(s) were added to refs/heads/workflows by this push:
     new 914bf7c1 update reusable workflow
914bf7c1 is described below

commit 914bf7c109697acd94aabb32e9371a002dac7a7d
Author: Lee Rhodes <[email protected]>
AuthorDate: Fri Feb 27 16:03:51 2026 -0800

    update reusable workflow
---
 .github/workflows/reusable-jdk-os-matrix.yml | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/reusable-jdk-os-matrix.yml 
b/.github/workflows/reusable-jdk-os-matrix.yml
index 1242a56a..28012367 100644
--- a/.github/workflows/reusable-jdk-os-matrix.yml
+++ b/.github/workflows/reusable-jdk-os-matrix.yml
@@ -22,11 +22,17 @@ jobs:
     name: Build (${{ inputs.os_type }}, JDK ${{ inputs.jdk_version }}, ${{ 
inputs.java_arch }})
     runs-on: ${{ inputs.os_type }}
     steps:
-      - name: Checkout code
+      - name: Checkout Source code
         uses: actions/checkout@v4
         with:
           persist-credentials: false
 
+      - name: Checkout Workflow Logic (workflows branch)
+        uses: actions/checkout@v4
+        with:
+          ref: workflows
+          path: .github/workflow-logic
+          
       - name: Install Matrix JDK
         uses: actions/setup-java@v4
         with:
@@ -49,6 +55,13 @@ jobs:
       - name: Echo Java & Maven Version
         run: mvn -version
 
+        - name: Print Current Workflows
+          run: |
+            echo "Reusable Workflow:"
+            cat 
.github/workflow-logic/.github/workflows/reusable-jdk-os-matrix.yml
+            echo "Caller Workflow:"
+            cat .github/workflows/auto-jdk-os-matrix.yml
+          
       - name: Test
         run: mvn clean test
 


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

Reply via email to