Skip to content

Commit 3d34215

Browse files
committed
Fix CI path excludes
They need wildcards, otherwise they don't match. Previously it always ran on PRs but in github.com/ruby/ruby-prism/commit/c4d202dc4866d6f03cc6cbda083a8950c6e6e42e I also applied it it PRs. That means that previously it didn't run on main. This fixes this
1 parent 58b7cf5 commit 3d34215

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/cpp-bindings.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
push:
55
paths: &paths
66
- ".github/workflows/cpp-bindings.yml"
7-
- "include/"
8-
- "src/"
9-
- "cpp/"
7+
- "include/**"
8+
- "src/**"
9+
- "cpp/**"
1010
- "*akefile*"
1111
branches:
1212
- main

.github/workflows/java-wasm-bindings.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
44
push:
55
paths: &paths
66
- ".github/workflows/java-wasm-bindings.yml"
7-
- "include/"
8-
- "src/"
7+
- "include/**"
8+
- "src/**"
99
- "*akefile*"
10-
- "java/"
11-
- "java/wasm/"
10+
- "java/**"
11+
- "java/wasm/**"
1212
branches:
1313
- main
1414
- ruby-4.0

.github/workflows/javascript-bindings.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
push:
55
paths: &paths
66
- ".github/workflows/javascript-bindings.yml"
7-
- "include/"
8-
- "src/"
7+
- "include/**"
8+
- "src/**"
99
- "*akefile*"
1010
branches:
1111
- main

.github/workflows/rust-bindings.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
push:
55
paths: &paths
66
- ".github/workflows/rust-bindings.yml"
7-
- "include/"
8-
- "src/"
9-
- "rust/"
7+
- "include/**"
8+
- "src/**"
9+
- "rust/**"
1010
- "*akefile*"
1111
branches:
1212
- main

0 commit comments

Comments
 (0)