Skip to content

Commit 29029b6

Browse files
committed
chore: Fix condition on nightly lint job of check workflow
1 parent 4919c4a commit 29029b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
nightly-lint:
8989
runs-on: ubuntu-latest
9090
timeout-minutes: 5
91-
if: endsWith(github.ref, '-nightly') || github.event_name != 'schedule'
91+
if: endsWith(github.ref, '-nightly') && github.event_name != 'schedule'
9292
steps:
9393
- uses: actions/checkout@v2
9494
- uses: actions-rs/toolchain@v1

0 commit comments

Comments
 (0)