diff options
author | mattip <matti.picus@gmail.com> | 2023-02-06 14:38:00 +0200 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2023-02-20 21:07:30 +0000 |
commit | bbebe7b4c85cc6dfdbb6307452a0ba2109ec29fa (patch) | |
tree | 75e9e37d0789ea4f54d86ec17c30fd828773035f /.github | |
parent | 587907098e69f833c4cd39aca49127c2f8abecbb (diff) | |
download | numpy-bbebe7b4c85cc6dfdbb6307452a0ba2109ec29fa.tar.gz |
BLD: run the workflow only when appropriate
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/windows_meson.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/windows_meson.yml b/.github/workflows/windows_meson.yml index 6be2af7e5..c74d13681 100644 --- a/.github/workflows/windows_meson.yml +++ b/.github/workflows/windows_meson.yml @@ -24,6 +24,7 @@ jobs: meson: name: Meson windows build/test runs-on: windows-2019 + if: "github.repository == 'numpy/numpy' && !contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[skip github]')" steps: - name: Checkout uses: actions/checkout@v3 |