Skip to content

Commit

Permalink
Make the skip condition more specific for device tests
Browse files Browse the repository at this point in the history
Hoping this leads to less skipping.
  • Loading branch information
PaulKlauser committed Jun 3, 2024
1 parent 24697de commit 782c00d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/device-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Expand Down

0 comments on commit 782c00d

Please sign in to comment.