Skip to content

Commit 4675d7b

Browse files
committed
CI/GHA: Adjust path filters for running test cases
1 parent d5117cd commit 4675d7b

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/javascript.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ on:
44
pull_request:
55
branches: [ main ]
66
paths:
7-
- cratedb_sqlparse_js
7+
- .github/workflows/javascript.yml
8+
- cratedb_sqlparse_js/**
89
push:
910
branches: [ main ]
1011
paths:
11-
- cratedb_sqlparse_js
12+
- .github/workflows/javascript.yml
13+
- cratedb_sqlparse_js/**
1214

1315
# Allow job to be triggered manually.
1416
workflow_dispatch:

.github/workflows/python.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ on:
44
pull_request:
55
branches: [ main ]
66
paths:
7-
- cratedb_sqlparse_py
7+
- .github/workflows/python.yml
8+
- cratedb_sqlparse_py/**
89
push:
910
branches: [ main ]
1011
paths:
11-
- cratedb_sqlparse_py
12-
12+
- .github/workflows/python.yml
13+
- cratedb_sqlparse_py/**
1314

1415
# Allow job to be triggered manually.
1516
workflow_dispatch:

0 commit comments

Comments
 (0)