Skip to content

Commit

Permalink
Invert event_name check in test-report job (#5959)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham authored Mar 17, 2022
1 parent 8957c14 commit 9f7027e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
test-report:
name: Test Report
# Do not run the report job on forks
if: github.repository == 'dask/distributed' || github.event_name != 'workflow_dispatch'
if: github.repository == 'dask/distributed' || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ github.token }}
Expand Down

0 comments on commit 9f7027e

Please sign in to comment.