Skip to content

Commit

Permalink
Fix filters in workflows to use ** instead of * where appropriate. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrp committed Apr 13, 2024
1 parent 3870647 commit fe20742
Show file tree
Hide file tree
Showing 14 changed files with 27 additions and 27 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/assimp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Assimp
on:
push:
branches-ignore:
- "ci/*"
- "develop/*"
- "ci/**"
- "develop/**"
- "main"
paths:
- build/submodules/Assimp
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
push:
branches:
- 'main'
- 'release/*'
- 'release/**'
paths-ignore:
- 'documentation/**'
tags:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dxvk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
- build/nuke/Native/Dxvk.cs
- .github/workflows/dxvk.yml
branches-ignore:
- "ci/*"
- "develop/*"
- "ci/**"
- "develop/**"
- "main"
jobs:
Build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/glfw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: GLFW
on:
push:
branches-ignore:
- "ci/*"
- "develop/*"
- "ci/**"
- "develop/**"
- "main"
paths:
- "build/submodules/GLFW"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/moltenvk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: MoltenVK
on:
push:
branches-ignore:
- "ci/*"
- "develop/*"
- "ci/**"
- "develop/**"
- "main"
paths:
- build/submodules/MoltenVK
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/public-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Public API
on:
push:
branches:
- "*"
- "**"
create:
tags:
- "*"
- "**"
pull_request_target:
permissions:
issues: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sdl2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: SDL2
on:
push:
branches-ignore:
- "ci/*"
- "develop/*"
- "ci/**"
- "develop/**"
- "main"
paths:
- build/submodules/SDL
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/shaderc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Shaderc
on:
push:
branches-ignore:
- "ci/*"
- "develop/*"
- "ci/**"
- "develop/**"
- "main"
paths:
- build/submodules/shaderc
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/spirv-cross.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: SPIRV-Cross
on:
push:
branches-ignore:
- "ci/*"
- "develop/*"
- "ci/**"
- "develop/**"
- "main"
paths:
- build/submodules/SPIRV-Cross
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/spirv-reflect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: SPIRV-Reflect
on:
push:
branches-ignore:
- "ci/*"
- "develop/*"
- "ci/**"
- "develop/**"
- "main"
paths:
- build/submodules/SPIRV-Reflect
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/swiftshader.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
- build/nuke/Native/SwiftShader.cs
- .github/workflows/swiftshader.yml
branches-ignore:
- "ci/*"
- "develop/*"
- "ci/**"
- "develop/**"
- "main"
jobs:
Build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vkd3d.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Vkd3d
on:
push:
branches-ignore:
- "ci/*"
- "develop/*"
- "ci/**"
- "develop/**"
- "main"
paths:
- build/submodules/vkd3d
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vulkan-loader.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Vulkan Loader
on:
push:
branches-ignore:
- "ci/*"
- "develop/*"
- "ci/**"
- "develop/**"
- "main"
paths:
- build/submodules/Vulkan-Loader
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wgpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: WGPU
on:
push:
branches-ignore:
- "ci/*"
- "develop/*"
- "ci/**"
- "develop/**"
- "main"
paths:
- build/submodules/wgpu-native
Expand Down

0 comments on commit fe20742

Please sign in to comment.