Skip to content

Commit fe20742

Browse files
authored
Fix filters in workflows to use ** instead of * where appropriate. (#2052)
1 parent 3870647 commit fe20742

File tree

14 files changed

+27
-27
lines changed

14 files changed

+27
-27
lines changed

.github/workflows/assimp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Assimp
22
on:
33
push:
44
branches-ignore:
5-
- "ci/*"
6-
- "develop/*"
5+
- "ci/**"
6+
- "develop/**"
77
- "main"
88
paths:
99
- build/submodules/Assimp

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
branches:
55
- 'main'
6-
- 'release/*'
6+
- 'release/**'
77
paths-ignore:
88
- 'documentation/**'
99
tags:

.github/workflows/dxvk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
- build/nuke/Native/Dxvk.cs
88
- .github/workflows/dxvk.yml
99
branches-ignore:
10-
- "ci/*"
11-
- "develop/*"
10+
- "ci/**"
11+
- "develop/**"
1212
- "main"
1313
jobs:
1414
Build:

.github/workflows/glfw.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: GLFW
22
on:
33
push:
44
branches-ignore:
5-
- "ci/*"
6-
- "develop/*"
5+
- "ci/**"
6+
- "develop/**"
77
- "main"
88
paths:
99
- "build/submodules/GLFW"

.github/workflows/moltenvk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: MoltenVK
22
on:
33
push:
44
branches-ignore:
5-
- "ci/*"
6-
- "develop/*"
5+
- "ci/**"
6+
- "develop/**"
77
- "main"
88
paths:
99
- build/submodules/MoltenVK

.github/workflows/public-api.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Public API
22
on:
33
push:
44
branches:
5-
- "*"
5+
- "**"
66
create:
77
tags:
8-
- "*"
8+
- "**"
99
pull_request_target:
1010
permissions:
1111
issues: write

.github/workflows/sdl2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: SDL2
22
on:
33
push:
44
branches-ignore:
5-
- "ci/*"
6-
- "develop/*"
5+
- "ci/**"
6+
- "develop/**"
77
- "main"
88
paths:
99
- build/submodules/SDL

.github/workflows/shaderc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Shaderc
22
on:
33
push:
44
branches-ignore:
5-
- "ci/*"
6-
- "develop/*"
5+
- "ci/**"
6+
- "develop/**"
77
- "main"
88
paths:
99
- build/submodules/shaderc

.github/workflows/spirv-cross.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: SPIRV-Cross
22
on:
33
push:
44
branches-ignore:
5-
- "ci/*"
6-
- "develop/*"
5+
- "ci/**"
6+
- "develop/**"
77
- "main"
88
paths:
99
- build/submodules/SPIRV-Cross

.github/workflows/spirv-reflect.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: SPIRV-Reflect
22
on:
33
push:
44
branches-ignore:
5-
- "ci/*"
6-
- "develop/*"
5+
- "ci/**"
6+
- "develop/**"
77
- "main"
88
paths:
99
- build/submodules/SPIRV-Reflect

0 commit comments

Comments
 (0)