I'm using PullApprove v3 for GitHub PRs. I have a larger team general-team
and a smaller team specific-team
. specific-team
is a subset of general-team
.
I want to allow PR approvals from anyone on general-team
but only send requests to specific-team
to avoid spamming general-team
.
I found in the PullApprove documentation that I can prefix a team with ~
to exclude them from receiving requests. My .pullapprove.yml
looks like this:
version: 3
groups:
code:
reviews:
required: 1
request: 2
reviewers:
teams:
- specific-team
- ~general-team
But because specific-team
is a subset of general-team
, they are marked unavailable and no requests go out. How can I send requests to specific-team
?