From a5cbe7f51559ad02d3a7cd0594bca13fe85fbad7 Mon Sep 17 00:00:00 2001 From: Paul Klauser Date: Mon, 3 Jun 2024 12:56:46 -0400 Subject: [PATCH] Don't skip device tests on workflow_call --- .github/workflows/device-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/device-tests.yml b/.github/workflows/device-tests.yml index 789b472c..3f65c539 100644 --- a/.github/workflows/device-tests.yml +++ b/.github/workflows/device-tests.yml @@ -17,7 +17,7 @@ on: jobs: device-tests: runs-on: ubuntu-20.04 - if: ${{ github.event.workflow_run.conclusion == 'success' }} + if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_call' }} steps: - uses: haya14busa/action-workflow_run-status@v1 if: ${{ github.event_name == 'workflow_run' }}