Add ignore_commits_by
option (#156)
This option allows rules to ignore all commits that are authored and committed by users matching specific criteria. This can be useful to prevent automated commits from invalidating approval or to ignore changes by trusted contributors.
Add comment_patterns
approval method (#158)
This option takes a list of regular expressions that identify approval (and disapproval) comments. Use this method instead of the existing comments
method to match comments by exact text or by more complicated patterns.
Validate regular expressions when loading policies (#157)
Policies with invalid regular expressions now fail to load instead of failing only when a rule with an invalid expression is evaluated. Regular expressions are now also validated as part of the validation API.