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

sarutak pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new 8b68a172d34d [SPARK-54858][INFRA] Fix syntax error in 
`test_report.yml` and recover GA workflow
8b68a172d34d is described below

commit 8b68a172d34d2ed9bd0a2deefcae1840a78143b6
Author: Kousuke Saruta <[email protected]>
AuthorDate: Sun Dec 28 13:14:37 2025 +0900

    [SPARK-54858][INFRA] Fix syntax error in `test_report.yml` and recover GA 
workflow
    
    ### What changes were proposed in this pull request?
    This PR aims to fix a syntax error in `test_report.yml` which causes GA 
workflow failure.
    
    ### Why are the changes needed?
    To recover GA workflow `test_report`. Recently, that workflow consistently 
fails.
    <img width="1719" height="828" alt="test_report_failure" 
src="https://github.com/user-attachments/assets/17afed94-963d-42b1-90a1-ad8f015e3740";
 />
    <img width="1370" height="172" alt="test_report_failure_detail" 
src="https://github.com/user-attachments/assets/799ad6cb-b646-416a-b8aa-0905f3cf987c";
 />
    
    ### Does this PR introduce _any_ user-facing change?
    No.
    
    ### How was this patch tested?
    GA.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    No.
    
    Closes #53629 from sarutak/fix-test-report.
    
    Authored-by: Kousuke Saruta <[email protected]>
    Signed-off-by: Kousuke Saruta <[email protected]>
---
 .github/workflows/test_report.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/test_report.yml 
b/.github/workflows/test_report.yml
index 7139b63fdac1..1406bd4732d0 100644
--- a/.github/workflows/test_report.yml
+++ b/.github/workflows/test_report.yml
@@ -26,7 +26,7 @@ on:
 
 jobs:
   test_report:
-    if: ${{ github.event.workflow_run.conclusion not in ['skipped', 
'cancelled'] }}
+    if: "!contains(fromJson('[\"skipped\", \"cancelled\"]'), 
github.event.workflow_run.conclusion)"
     runs-on: ubuntu-latest
     permissions:
       actions: read


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

Reply via email to