diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2023-02-01 20:17:19 +0000 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2023-02-01 20:17:19 +0000 |
commit | 2a6e24192141264dfcc8f4d0f3f7a921b58a5056 (patch) | |
tree | 4af04ec6f6d88241e84e7e87c06e9329e0f81e07 /.github | |
parent | 05a0c6cf44ffd7fb78061b7be3bd76fcaba52012 (diff) | |
download | numpy-2a6e24192141264dfcc8f4d0f3f7a921b58a5056.tar.gz |
CI: stop GitHub Actions jobs from running on merge to main
This is fairly pointless, because (a) we just tested this on a PR,
and (b) in case there's a failure it will show up in other PRs
within hours anyway.
[skip cirrus] [skip circle]
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build_test.yml | 4 | ||||
-rw-r--r-- | .github/workflows/cygwin.yml | 4 | ||||
-rw-r--r-- | .github/workflows/linux_musl.yml | 4 |
3 files changed, 0 insertions, 12 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 08d531105..77bda2abe 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -1,10 +1,6 @@ name: Build_Test on: - push: - branches: - - main - - maintenance/** pull_request: branches: - main diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml index cc633ffe8..9ca4f24b9 100644 --- a/.github/workflows/cygwin.yml +++ b/.github/workflows/cygwin.yml @@ -3,10 +3,6 @@ # if: github.repository == 'numpy/numpy' name: Test on Cygwin on: - push: - branches: - - main - - maintenance/** pull_request: branches: - main diff --git a/.github/workflows/linux_musl.yml b/.github/workflows/linux_musl.yml index 7d842a7e8..af0113226 100644 --- a/.github/workflows/linux_musl.yml +++ b/.github/workflows/linux_musl.yml @@ -1,10 +1,6 @@ name: Test musllinux_x86_64 on: - push: - branches: - - main - - maintenance/** pull_request: branches: - main |