-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
035ec1e
commit 4cd7264
Showing
1 changed file
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,15 @@ jobs: | |
name: Build Zips | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
if: false == ( ( github.event_name == 'pull_request' && ( github.event.action == 'closed' || github.event.pull_request.draft == true || contains( github.head_ref, 'dependabot/' ) ) ) || github.event.pull_request.head.repo.fork ) | ||
if: | | ||
false == ( | ||
github.event_name == 'pull_request' && ( | ||
github.event.action == 'closed' || | ||
github.event.pull_request.draft == true || | ||
github.event.pull_request.head.repo.fork || | ||
contains( github.head_ref, 'dependabot/' ) | ||
) | ||
) | ||
steps: | ||
- uses: styfle/[email protected] | ||
- uses: actions/checkout@v2 | ||
|
4cd7264
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The expanded/formatted version of the left side is
which probably breaks for non-
pull_request
events because of the OR condition not equalingfalse
🤔