From 21ce08c3b2129a1a9886fbe157562df232593f34 Mon Sep 17 00:00:00 2001 From: Arthur van de Vondervoort Date: Mon, 22 Jun 2026 11:07:55 +0200 Subject: [PATCH] fix: run Test Report after Scheduled Build The Test Report workflow triggers on workflow_run but only listened for 'Pull Request' and 'Build and Release'. The scheduled keepalive runs under the 'Scheduled Build' workflow (calling build-test.yml as a reusable workflow), so workflow_run never fired and test results were not reported even though the test-results-* artifacts were uploaded. Add 'Scheduled Build' to the workflow_run.workflows list. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .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 761a693..6d32629 100644 --- a/.github/workflows/test-report.yml +++ b/.github/workflows/test-report.yml @@ -2,7 +2,7 @@ name: Test Report on: workflow_run: - workflows: ['Pull Request', 'Build and Release'] + workflows: ['Pull Request', 'Build and Release', 'Scheduled Build'] types: - completed