Re: cfbot update: Using GitHub for patch review

Поиск
Список
Период
Сортировка
От Ashutosh Bapat
Тема Re: cfbot update: Using GitHub for patch review
Дата
Msg-id CAExHW5tRyrdPUcV1LO1UA_C4doEKCMmpE-Uv++XBZr5r70MSXA@mail.gmail.com
обсуждение исходный текст
Ответ на cfbot update: Using GitHub for patch review  (Jelte Fennema-Nio <postgres@jeltef.nl>)
Ответы Re: cfbot update: Using GitHub for patch review  (Thomas Munro <thomas.munro@gmail.com>)
Список pgsql-hackers


On Fri, Jun 21, 2024 at 8:06 PM Jelte Fennema-Nio <postgres@jeltef.nl> wrote:
I recently got write access to the cfbot repo[1] and machine from
Thomas. And I deployed a few improvements this week. The most
significant one is that it is now much easier to use GitHub as part of
your patch review workflow.

On the cfbot website[2] there's now a "D" (diff) link next to each
commit fest entry.  A good example of such a link would be the one for
my most recent commitfest entry[3]. There is a separate commit for
each patch file and those commits contain the "git format-patch"
metadata. (this is not done using git am, but using git mailinfo +
patch + sed, because git am is horrible at resolving conflicts)

The killer feature (imho) of GitHub diffs over looking at patch files:
You can press the "Expand up"/"Expand down" buttons on the left of the
diff to see some extra context that the patch file doesn't contain.

You can also add the cfbot repo as a remote to your local git
repository. That way you don't have to manually download patches and
apply them to your local checkout anymore:

# Add the remote
git remote add -f cfbot https://github.com/postgresql-cfbot/postgresql.git
# make future git pulls much quicker (optional)
git maintenance start
# check out a commitfest entry
git checkout cf/5065

P.S. Suggestions for further improvements are definitely appreciated.
We're currently already working on better integration between the
commitfest app website and the cfbot website.

P.P.S The "D" links don't work for patches that need to be rebased
since before I deployed this change, but that problem should fix
itself with time.

Thanks. Very helpful.

Will it be possible to make it send an email containing the review comments? Better even if a reply to that email adds comments/responses back to PR.

I need to sign in to github to add my review comments. So those who do not have a github account can not use it for review. But I don't think that can be fixed. We need a way to know who left review comments.

There was some discussion at pgconf.dev about using gitlab instead of github. How easy is it to use gitlab if we decide to go that way?

--
Best Wishes,
Ashutosh Bapat

В списке pgsql-hackers по дате отправления:

Предыдущее
От: Bertrand Drouvot
Дата:
Сообщение: Re: walsender.c comment with no context is hard to understand
Следующее
От: Amit Langote
Дата:
Сообщение: Re: remaining sql/json patches