Skip to content

Commit 79b5c5b

Browse files
committed
Disable all workflows except linuxbrew, for testing purposes
1 parent 31fc261 commit 79b5c5b

4 files changed

Lines changed: 6 additions & 15 deletions

File tree

.github/workflows/macosx.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: macOS
2-
on: [push, pull_request]
2+
on:
3+
workflow_dispatch:
34
concurrency:
45
group: ${{ github.workflow }}-${{ github.ref }}
56
cancel-in-progress: ${{ github.ref_name != 'master' }}

.github/workflows/manylinux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: manylinux
2-
on: [push, pull_request]
2+
on:
3+
workflow_dispatch:
34
concurrency:
45
group: ${{ github.workflow }}-${{ github.ref }}
56
cancel-in-progress: ${{ github.ref_name != 'master' }}

.github/workflows/sdist.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: sdist
2-
on: [push, pull_request]
2+
on:
3+
workflow_dispatch:
34
concurrency:
45
group: ${{ github.workflow }}-${{ github.ref }}
56
cancel-in-progress: ${{ github.ref_name != 'master' }}

.github/workflows/wheels.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,6 @@
11
name: Wheel build
22

33
on:
4-
release:
5-
types: [created]
6-
schedule:
7-
# ┌───────────── minute (0 - 59)
8-
# │ ┌───────────── hour (0 - 23)
9-
# │ │ ┌───────────── day of the month (1 - 31)
10-
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
11-
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
12-
# │ │ │ │ │
13-
- cron: "42 3 * * 4"
14-
push:
15-
pull_request:
164
workflow_dispatch:
175

186
concurrency:

0 commit comments

Comments
 (0)