Skip to content

Commit 9bbc031

Browse files
committed
ci: fix changed-sdks check to use correct directory paths
1 parent f985b70 commit 9bbc031

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- id: check_python_sdk
6868
name: Check Python SDK changes
6969
run: |
70-
if git diff --name-only "${{ steps.git_refs.outputs.base }}" "${{ steps.git_refs.outputs.head }}" -- 'python/**' | grep -q .; then
70+
if git diff --name-only "${{ steps.git_refs.outputs.base }}" "${{ steps.git_refs.outputs.head }}" -- 'libraries/**' 'setup.py' 'pyproject.toml' 'versioning/**' | grep -q .; then
7171
echo "Python SDK changes detected"
7272
echo "changed=true" >> $GITHUB_OUTPUT
7373
else

0 commit comments

Comments
 (0)