Skip to content

Commit

Permalink
Order conditional workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
terabytesoftw committed Oct 5, 2023
1 parent 67e0c69 commit 3315313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ name: build

jobs:
phpunit:
if: github.event.repository.fork == true || (github.event_name == 'push' && github.ref == 'refs/heads/master') || (github.event_name == 'pull_request')
if: github.event_name == 'pull_request' || github.event.repository.fork == true || (github.event_name == 'push' && github.ref == 'refs/heads/master')
uses: yiisoft/actions/.github/workflows/phpunit.yml@master
with:
os: >-
Expand Down

0 comments on commit 3315313

Please sign in to comment.