A condition for a group.
| 17 | |
| 18 | /** A condition for a group. */ |
| 19 | interface GroupCondition { |
| 20 | expression: string; |
| 21 | checkFn: (files: string[], groups: PullApproveGroup[]) => boolean; |
| 22 | matchedFiles: Set<string>; |
| 23 | unverifiable: boolean; |
| 24 | } |
| 25 | |
| 26 | interface GroupReviewers { |
| 27 | users?: string[]; |
nothing calls this directly
no outgoing calls
no test coverage detected