Skip to content
Closed
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,12 @@ jobs:
ruff: ${{ steps.changes.outputs.ruff }}
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: dorny/paths-filter@v3
id: changes
with:
base: main
Copy link

Copilot AI Mar 8, 2026

Choose a reason for hiding this comment

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

base: main is hardcoded for dorny/paths-filter, but this workflow runs on PRs and pushes to both main and develop. Using main as the base can produce incorrect change detection (e.g., PRs targeting develop or pushes to develop), potentially skipping required jobs or running too much. Consider using the PR base ref (e.g., ${{ github.base_ref }}) and falling back appropriately for push events, or omit base to use the action’s defaults.

Suggested change
base: main

Copilot uses AI. Check for mistakes.
filters: |
backend:
- 'backend/**'
Expand Down
Loading
Loading