-
Notifications
You must be signed in to change notification settings - Fork 247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exclude few folders in one filter #200
Comments
I had the same problem recently, but it seems that the negation operator is not supported. I'd be happy if it's the same as GitHub's paths. |
Thanks, it works for single rule but not in combination..
|
It appears that In our case, our filter was previously - 'app-*/**'
- '!app-ui/**' but I'm pretty sure that resulted in a union of:
resulting in a file list that includes everything in the folder as triggering a rebuild. Instead, we changed to - 'app-!(ui)/**' which is what we wanted. That syntax is described on Quick other note: make sure to put the strings in quotes since YAML treats |
Hey, have repo that include two folders, for which I don't want to run some steps, tried following:
Got this results:
ga
andinfra
looks good, expected that some folders not match, but inga-infra
I expected to see onlysrc/main/java/com/.../file.java
because other excludedCan you point me what I did wrong or this not possible to implement, tried to read
picomatch
not get answers ..The text was updated successfully, but these errors were encountered: