Skip to content

Commit 4593508

Browse files
authored
Merge pull request #7468 from hugovk/main
Skip non-wheel CI runs for tags
2 parents 8f9e3ff + 95b0c0b commit 4593508

File tree

7 files changed

+15
-1
lines changed

7 files changed

+15
-1
lines changed

.github/workflows/cifuzz.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: CIFuzz
22

33
on:
44
push:
5+
branches:
6+
- "**"
57
paths:
68
- ".github/workflows/cifuzz.yml"
79
- "**.c"

.github/workflows/docs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Docs
22

33
on:
44
push:
5+
branches:
6+
- "**"
57
paths:
68
- ".github/workflows/docs.yml"
79
- "docs/**"

.github/workflows/test-cygwin.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Test Cygwin
22

33
on:
44
push:
5+
branches:
6+
- "**"
57
paths-ignore:
68
- ".github/workflows/docs.yml"
79
- ".github/workflows/wheels*"

.github/workflows/test-docker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Test Docker
22

33
on:
44
push:
5+
branches:
6+
- "**"
57
paths-ignore:
68
- ".github/workflows/docs.yml"
79
- ".github/workflows/wheels*"

.github/workflows/test-mingw.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Test MinGW
22

33
on:
44
push:
5+
branches:
6+
- "**"
57
paths-ignore:
68
- ".github/workflows/docs.yml"
79
- ".github/workflows/wheels*"

.github/workflows/test-valgrind.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
name: Test Valgrind
22

3-
# like the docker tests, but running valgrind only on *.c/*.h changes.
3+
# like the Docker tests, but running valgrind only on *.c/*.h changes.
44

55
on:
66
push:
7+
branches:
8+
- "**"
79
paths:
810
- ".github/workflows/test-valgrind.yml"
911
- "**.c"

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Test
22

33
on:
44
push:
5+
branches:
6+
- "**"
57
paths-ignore:
68
- ".github/workflows/docs.yml"
79
- ".github/workflows/wheels*"

0 commit comments

Comments
 (0)