-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
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
Relax restriction that FCPs can only be started by members of the team in question #306
Comments
The restriction I was contemplating was "on some team with access to the bot", but I suspect we'd be mostly okay with just no restrictions - the team can always cancel the FCP and abuse can be handled out of band. |
Yeah, that makes sense and is mostly what I was thinking. If it's easy to add the restricting for some team, I'll do that. |
This is tricky to add in a way that respects the logic of "member of some team", since teams/members are all manually added into the DB (in the migrations), and it doesn't know about Rather than duplicate those teams, I'm going to go about it via the "the team can always cancel the FCP and abuse can be handled out of band" you suggested for now. That said, this is not exactly ideal. The easiest alternative would be to require it be a member of some team in the rfcbot DB, and then also add Thoughts? Also, on Zulip @joshtriplett suggested a way to have it started as "no disposition". This seems good to have eventually, and would be beneficial for more than just this. Sadly, it seems much harder to add -- it needs new UI (probably 2 sets of checkboxes?) which seems like it might require changing a bunch of the logic for FCPs. I'm not familiar enough with this codebase to be confident in that at the moment, so I'm inclined to punt on it for now. Until then, I think we'd just still have this be Does that seem reasonable? Footnotes
|
I personally don't think no disposition makes sense - having concurrent yes/no votes in the rfcbot model at least is pretty confusing for everyone I suspect. Plus, IMO the proposer should have an opinion: if they don't they probably shouldn't kick off FCP. We already essentially have yes/no via not ticking the box and leaving comments (potentially raising concerns). I think with the successor (rustbot) we may be able to arrive at a slightly different model, where each person is contributing an independent assessment (+1, -1, maybe +/-0), but I don't think retrofitting that is really worthwhile. I thought we already integrated with the team repo, just there's support for in-table teams too? IIRC, the types team has had fcps and we've not deployed code since they were created unless I'm forgetting something. So it may be that you can actually support any team; it may work well to do that via a new "API" call to the all@ (dynamically generated) team. |
I'm very happy with just anyone can start an FCP for now though. |
On Sun, Jul 31, 2022 at 06:03:32PM -0700, Mark Rousskov wrote:
I think with the successor (rustbot) we may be able to arrive at a slightly different model, where each person is contributing an independent assessment (+1, -1, maybe +/-0), but I don't think retrofitting that is really worthwhile.
I agree; I don't think we should try to change that in rfcbot.
|
I had misunderstood then, but am glad we're on the same page. |
Discussed some on Zulip, I think people are in agreement that it doesn't necessarily have to be a member of the team in question to start a FCP.
That said, I'm not 100% sure what the restriction should be. Presumably not just anybody should be able to kick off an FCP (or maybe it's not a problem?). I guess also this could be a per-team decision on whether or not to allow this. (This is perhaps more trouble than its worth though, at least initially).
I can probably take this (barring it being more surprising than expected to implement), but won't be able to get started on it until this weekend.
The text was updated successfully, but these errors were encountered: