paths-filter icon indicating copy to clipboard operation
paths-filter copied to clipboard

Bug: working-directory makes filters incorrect

Open sidvishnoi opened this issue 3 years ago • 0 comments

The expectation was that all the filters are relative to the specified working-directory, but it's not the case.

Doesn't work:

working-directory: 'my-base-dir'
filters: |
  fn:
    - 'my-sub-dir/**'

Works:

filters: |
  fn:
    - 'my-base-dir/my-sub-dir/**'

sidvishnoi avatar Nov 02 '21 17:11 sidvishnoi