Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
--match-filter "Invalid filter part u" #24357
Comments
|
Match filter does not support any kind of calculations. |
Checklist
Verbose log
Description
In the match filter, I am trying to use the following logic:
--match-filter 'duration > 120 & like_count > 40 & (like_count/(like_count + dislike_count)) > .90'The last part is to test for a like/dislike ratio of over 90%. However, this produces an error and isn't read by the match filter, even though the individual keys (like_count, dislike_count) are numeric, and valid. Any idea what syntax would make this work?