Skip to content

Commit 8b68a17

Browse files
committed
[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]>
1 parent 8a6b685 commit 8b68a17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626

2727
jobs:
2828
test_report:
29-
if: ${{ github.event.workflow_run.conclusion not in ['skipped', 'cancelled'] }}
29+
if: "!contains(fromJson('[\"skipped\", \"cancelled\"]'), github.event.workflow_run.conclusion)"
3030
runs-on: ubuntu-latest
3131
permissions:
3232
actions: read

0 commit comments

Comments
 (0)