diff options
author | Donald Stufft <donald@stufft.io> | 2017-03-02 22:47:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-02 22:47:44 (GMT) |
commit | cdf037c212675b11c10c4d0d76496f5d81154882 (patch) | |
tree | 54cc10be30f335e6bf850d4c80d2957cb2f0bb30 /.mention-bot | |
parent | 1bea762d9ec823544c530d567330a47f64d93d4f (diff) | |
download | cpython-cdf037c212675b11c10c4d0d76496f5d81154882.zip cpython-cdf037c212675b11c10c4d0d76496f5d81154882.tar.gz cpython-cdf037c212675b11c10c4d0d76496f5d81154882.tar.bz2 |
Don't require the Python org to mention someone (GH-393)
Previously we configured the mention-bot to only mention people who are members of the Python organization. However, this doesn't currently work
if members don't have their membership public. Instead we will configure mention-bot to poke anyone, even non-members.
Diffstat (limited to '.mention-bot')
-rw-r--r-- | .mention-bot | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.mention-bot b/.mention-bot index 0af4b08..78c06ae 100644 --- a/.mention-bot +++ b/.mention-bot @@ -7,6 +7,5 @@ "Misc/NEWS" ], "userBlacklist": ["gvanrossum"], - "userBlacklistForPR": ["benjaminp"], - "requiredOrgs": ["python"] + "userBlacklistForPR": ["benjaminp"] } |