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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
if: github.event_name != 'release'
uses: dorny/paths-filter@v3
with:
# On push events, compare against the previous commit on this branch
# (github.event.before). Without this, the action defaults to comparing
# against the default branch on non-default branch pushes, which would
# match every accumulated change and defeat the filter.
base: ${{ github.event_name == 'push' && github.event.before || '' }}
filters: |
lite_analysis:
- 'Lite/Analysis/**'
Expand Down
Loading