Hi,
I'm trying to understand if i can create an OWNERS matcher to auto-assign a reviewer based on not only a single regex, but a boolean combination of regexes to exclude certain paths.
As an example, with a reviewers plugin i can create the following rule
[filter "(file:^.*\.md OR file:^.*\.txt) -file:^.*README.md -file:^.*BUILD.md]
reviewer = myteam
Which should match all .md files except README.md and BUILD.md, as well as all .txt files.
Is it possible to create such rules in an OWNERS yaml file for the owners-autoassign plugin? The documentation mentions support for regex or suffixes, but I can't find anything about exclusions or arbitrary boolean expressions.