diff options
author | Clement Tsang <34804052+ClementTsang@users.noreply.github.com> | 2024-05-07 02:13:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-07 02:13:11 -0400 |
commit | d515c03ec7d25b9e53245bb7d141eb4fb4f2c556 (patch) | |
tree | 0dd87460318d61029da8624cf1ee81f3469b10af | |
parent | 398bf5930f32616bce6975ff2038efbdea7293fe (diff) |
ci: forgot to add if statement for nightly skip check (#1464)
-rw-r--r-- | .github/workflows/nightly.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index ba8fb596..335bd124 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -35,6 +35,7 @@ jobs: initialize-job: name: initialize-job needs: pre-job + if: ${{ needs.pre-job.outputs.should_skip != 'true' }} runs-on: ubuntu-latest steps: - name: Check if mock |