From 782c00d18ed0f05731bc8f8922d8f763e8d7b6ce Mon Sep 17 00:00:00 2001 From: Paul Klauser Date: Mon, 3 Jun 2024 13:08:55 -0400 Subject: [PATCH] Make the skip condition more specific for device tests Hoping this leads to less skipping. --- .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 3f65c539..c3ebc3db 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' || github.event_name == 'workflow_call' }} + if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name != 'workflow_run' }} steps: - uses: haya14busa/action-workflow_run-status@v1 if: ${{ github.event_name == 'workflow_run' }}