Skip to content

Commit

Permalink
Don't skip device tests on workflow_call
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulKlauser committed Jun 3, 2024
1 parent e66e6ac commit a5cbe7f
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' }}
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' }}
Expand Down

0 comments on commit a5cbe7f

Please sign in to comment.