Skip to content

Commit

Permalink
[skip ci] fix ci (#1263)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ylarod authored Jan 7, 2024
1 parent 1fad91a commit 0f8a134
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-kernel-arcvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:

jobs:
build:
if: github.event_name == 'pull_request' && !github.event.pull_request.draft
if: github.event_name != 'pull_request' || (github.event_name == 'pull_request' && !github.event.pull_request.draft)
strategy:
matrix:
arch: [x86_64]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-kernel-wsa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:

jobs:
build:
if: github.event_name == 'pull_request' && !github.event.pull_request.draft
if: github.event_name != 'pull_request' || (github.event_name == 'pull_request' && !github.event.pull_request.draft)
strategy:
matrix:
arch: [x86_64, arm64]
Expand Down

0 comments on commit 0f8a134

Please sign in to comment.