Please Publicize your Github Membership for Python
Hello!
Some of our automation needs to be able to determine who is a member of the Python organization on Github to effectively work. Unfortunately it currently can only see users who have publicized their membership in the Org, but so far only 50 out of 138 current members have done so.
If you have a minute and are able to do that, it would be great.
It’s pretty easy to do, just go to https://github.com/orgs/python/people <https://github.com/orgs/python/people> and locate yourself on the list. Once you found yourself, if you look to the right hand side of your entry, you’ll see either the word “Private” or “Public”, if it says “Private”, click on it and select “Public” (https://s.caremad.io/MLlxY1W5r0/ <https://s.caremad.io/MLlxY1W5r0/>). That’s all you need to do.
Thanks a lot!
— Donald Stufft
On 2 March 2017 at 23:20, Donald Stufft <donald@stufft.io> wrote:
Hello!
Some of our automation needs to be able to determine who is a member of the Python organization on Github to effectively work. Unfortunately it currently can only see users who have publicized their membership in the Org, but so far only 50 out of 138 current members have done so.
Providing some more specifics on the helper that needs this:
- Donald & Brett recently enabled https://github.com/facebook/mention-bot which tries to find and mention relevant reviewers based on files touched in the commit
- the bot only has access to public info, so if your org membership is private, it will never mention you, so you may miss PRs you actually want to review
- if your org info is public, but you don't want the mentions, then you can add yourself to the blacklist in https://github.com/python/cpython/blob/master/.mention-bot (as Guido has)
- if you want to find your own reviewers for your PRs, add yourself to the PR blacklist in the same file (as Benjamin has)
Cheers, Nick.
-- Nick Coghlan | ncoghlan@gmail.com | Brisbane, Australia
Donald just merged a change to not restrict mention-bot to members of the GitHub Python organization: https://github.com/python/cpython/pull/393
Victor
2017-03-03 8:03 GMT+01:00 Nick Coghlan <ncoghlan@gmail.com>:
On 2 March 2017 at 23:20, Donald Stufft <donald@stufft.io> wrote:
Hello!
Some of our automation needs to be able to determine who is a member of the Python organization on Github to effectively work. Unfortunately it currently can only see users who have publicized their membership in the Org, but so far only 50 out of 138 current members have done so.
Providing some more specifics on the helper that needs this:
- Donald & Brett recently enabled https://github.com/facebook/mention-bot which tries to find and mention relevant reviewers based on files touched in the commit
- the bot only has access to public info, so if your org membership is private, it will never mention you, so you may miss PRs you actually want to review
- if your org info is public, but you don't want the mentions, then you can add yourself to the blacklist in https://github.com/python/cpython/blob/master/.mention-bot (as Guido has)
- if you want to find your own reviewers for your PRs, add yourself to the PR blacklist in the same file (as Benjamin has)
Cheers, Nick.
-- Nick Coghlan | ncoghlan@gmail.com | Brisbane, Australia
python-committers mailing list python-committers@python.org https://mail.python.org/mailman/listinfo/python-committers Code of Conduct: https://www.python.org/psf/codeofconduct/
On Mar 3, 2017, at 2:03 AM, Nick Coghlan <ncoghlan@gmail.com> wrote:
On 2 March 2017 at 23:20, Donald Stufft <donald@stufft.io <mailto:donald@stufft.io>> wrote: Hello!
Some of our automation needs to be able to determine who is a member of the Python organization on Github to effectively work. Unfortunately it currently can only see users who have publicized their membership in the Org, but so far only 50 out of 138 current members have done so.
Providing some more specifics on the helper that needs this:
- Donald & Brett recently enabled https://github.com/facebook/mention-bot <https://github.com/facebook/mention-bot> which tries to find and mention relevant reviewers based on files touched in the commit
- the bot only has access to public info, so if your org membership is private, it will never mention you, so you may miss PRs you actually want to review
- if your org info is public, but you don't want the mentions, then you can add yourself to the blacklist in https://github.com/python/cpython/blob/master/.mention-bot <https://github.com/python/cpython/blob/master/.mention-bot> (as Guido has)
- if you want to find your own reviewers for your PRs, add yourself to the PR blacklist in the same file (as Benjamin has)
Cheers, Nick.
-- Nick Coghlan | ncoghlan@gmail.com <mailto:ncoghlan@gmail.com> | Brisbane, Australia
There’s also an option to *always* get notified for files that match a certain set of globs too.
— Donald Stufft
On Mar 3, 2017, at 2:03 AM, Nick Coghlan <ncoghlan@gmail.com> wrote:
- if your org info is public, but you don't want the mentions, then you can add yourself to the blacklist in https://github.com/python/cpython/blob/master/.mention-bot <https://github.com/python/cpython/blob/master/.mention-bot> (as Guido has)
- if you want to find your own reviewers for your PRs, add yourself to the PR blacklist in the same file (as Benjamin has)
Note, this .mention-bot file is a JSON file, so if you want to exclude yourself you’ll need to add yourself to the list of the already existing keys.
— Donald Stufft
participants (3)
-
Donald Stufft
-
Nick Coghlan
-
Victor Stinner