Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/sync-from-connectors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ jobs:
rsync -av --delete --exclude='README.md' /tmp/connectors/dotnet/npgsql/example/src/ dotnet/npgsql/src/
rsync -av --delete /tmp/connectors/dotnet/npgsql/example/test/ dotnet/npgsql/test/

- name: Sync Rust examples
run: |
rsync -av --delete --exclude='README.md' /tmp/connectors/rust/sqlx/example/src/ rust/sqlx/src/
rsync -av --delete /tmp/connectors/rust/sqlx/example/tests/ rust/sqlx/tests/

Copy link

Copilot AI Apr 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line contains trailing whitespace after the Rust sync step; please remove it to keep the workflow file clean and avoid whitespace-sensitive linting failures.

Suggested change

Copilot uses AI. Check for mistakes.
- name: Sync PHP examples
run: |
rsync -av --delete --exclude='README.md' --exclude='composer.json' /tmp/connectors/php/pdo_pgsql/example/src/ php/pdo-pgsql/src/
Expand Down
Loading