Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:65792 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 32174 invoked from network); 13 Feb 2013 16:02:13 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 13 Feb 2013 16:02:13 -0000 Authentication-Results: pb1.pair.com smtp.mail=johannes@schlueters.de; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=johannes@schlueters.de; sender-id=unknown Received-SPF: error (pb1.pair.com: domain schlueters.de from 217.114.211.66 cause and error) X-PHP-List-Original-Sender: johannes@schlueters.de X-Host-Fingerprint: 217.114.211.66 config.schlueters.de Received: from [217.114.211.66] ([217.114.211.66:58430] helo=config.schlueters.de) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 03/54-03493-209BB115 for ; Wed, 13 Feb 2013 11:02:11 -0500 Received: from [192.168.2.20] (ppp-88-217-64-14.dynamic.mnet-online.de [88.217.64.14]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by config.schlueters.de (Postfix) with ESMTPSA id DA6A765BB0 for ; Wed, 13 Feb 2013 17:02:06 +0100 (CET) To: PHP internals list Content-Type: text/plain; charset="UTF-8" Date: Wed, 13 Feb 2013 17:03:01 +0100 Message-ID: <1360771381.2694.24.camel@guybrush> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 Content-Transfer-Encoding: 7bit Subject: Github pull request management From: johannes@schlueters.de (Johannes =?ISO-8859-1?Q?Schl=FCter?=) Hi, with Felipe's help I've just added the second pull request management tool to mange pull requests. The first one is https://qa.php.net/pulls/ this allows any php.net developer to close pull requests on github, without us having to manage users on github and adding them to groups and all that stuff. I guess most of you have seen that. The new one is a simple integration of pull requests to the bug tracker. Similar to the "patch" feature of the bug tracker it is meant to link pull requests from bugs so one can easily use a quick search to find all bugs with code waiting for a review and having php.net users assigned to pull requests. Search for recent bugs with patch or pull request: https://bugs.php.net/search.php?boolean=0&limit=30&order_by=id&direction=DESC&cmd=display&status=Open&bug_age=0&bug_updated=0&bug_type=All&patch=Y&pull=Y Search for recent bugs with pull requests only: https://bugs.php.net/search.php?boolean=0&limit=30&order_by=id&direction=DESC&cmd=display&status=Open&bug_age=0&bug_updated=0&bug_type=All&pull=Y This is a relatively quick hack with room for improvement, some ideas anybody can pick up (I'm happy to give a hand where needed): - Add functionality from qa.php.net/pull for closing pull requests - Add a note to github when a bug is assigned to a pull request - Show more details about the pull request - Improve the usability - Improve the code - ... Happy bug fixing! johannes