We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We want to achieve the following interface:
{ "name": "foobar", "action": "comment", "matchers": { "includes": ["*.ts"], "eventJSONPath": ["foobar"] }, "errorLevel": "foo" }
to replace the toplevel level matchers (includes, excludes, eventJSONPath, etc.) that existed before.
includes
excludes
eventJSONPath
This will require enhanced JSON guards that can check types inside an object.
The text was updated successfully, but these errors were encountered:
We could also do the same with eventJSONPath and split it into include excludes as well.
{ "name": "foobar", "action": "comment", "matchers": { "includes": ["*.ts"], "eventJSONPath": { "includes": ["$.pull_request_body.match('Title')"], "excludes": ["$.sender.login.match(/*-bot/)"] } }, "errorLevel": "foo" }
Sorry, something went wrong.
No branches or pull requests
We want to achieve the following interface:
to replace the toplevel level matchers (
includes
,excludes
,eventJSONPath
, etc.) that existed before.This will require enhanced JSON guards that can check types inside an object.
The text was updated successfully, but these errors were encountered: