From: Jani Nikula <jani.nikula@intel.com>
To: Sean Paul <seanpaul@chromium.org>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>,
Intel Graphics Development <intel-gfx@lists.freedesktop.org>,
"Vivi, Rodrigo" <rodrigo.vivi@intel.com>
Subject: Re: [maintainer-tools PATCH 5/5] dim: update pull and test request recipients
Date: Mon, 11 Sep 2017 11:48:46 +0300 [thread overview]
Message-ID: <8760cp4o41.fsf@nikula.org> (raw)
In-Reply-To: <CAOw6vb+1uA7x2Ki6Y-OxCu5gXe-ezus25L_9iF=zmm1JBJFQ=Q@mail.gmail.com>
On Fri, 08 Sep 2017, Sean Paul <seanpaul@chromium.org> wrote:
> On Fri, Sep 8, 2017 at 9:30 AM, Jani Nikula <jani.nikula@intel.com> wrote:
>> Make it easier to add/remove people as needed. Add Joonas, Rodrigo and
>> Sean as new recipients for pull requests. Replace Daniel with Joonas and
>> Rodrigo as test request recipients.
>>
>> Perhaps we'll want to make the list branch specific in the future, but
>> get the low hanging fruit first.
>>
>> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
>> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
>> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
>> Cc: Sean Paul <seanpaul@chromium.org>
>
> Hi Jani,
> For the entire series:
>
> Reviewed-by: Sean Paul <seanpaul@chromium.org> (although this means
> I'll have to add default signatures now :/)
Thanks, pushed. You don't have to add signatures... you'll just get none
instead of Daniel's signature. ;)
BR,
Jani.
>
>
>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>> ---
>> dim | 41 +++++++++++++++++++++++------------------
>> 1 file changed, 23 insertions(+), 18 deletions(-)
>>
>> diff --git a/dim b/dim
>> index 96baffde5524..b177b9b28242 100755
>> --- a/dim
>> +++ b/dim
>> @@ -83,13 +83,27 @@ drm_tip_ssh=ssh://git.freedesktop.org/git/drm-tip
>> drm_upstream_git=git://people.freedesktop.org/~airlied/linux
>> linux_upstream_git=git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
>>
>> -# email aliases
>> -addr_drm_maintainer="Dave Airlie <airlied@gmail.com>"
>> -addr_intel_gfx_maintainer1="Daniel Vetter <daniel.vetter@ffwll.ch>"
>> -addr_intel_gfx_maintainer2="Jani Nikula <jani.nikula@linux.intel.com>"
>> -addr_intel_gfx="intel-gfx@lists.freedesktop.org"
>> -addr_dri_devel="dri-devel@lists.freedesktop.org"
>> -addr_intel_qa="\"Jari Tahvanainen\" <jari.tahvanainen@intel.com>"
>> +# Recipients for all dim based pull requests.
>> +# Add To: lines to the end, Cc: lines in the beginning with -c.
>> +pull_request_recipients=(
>> + -c "Daniel Vetter <daniel.vetter@ffwll.ch>"
>> + -c "Jani Nikula <jani.nikula@linux.intel.com>"
>> + -c "Joonas Lahtinen <joonas.lahtinen@linux.intel.com>"
>> + -c "Rodrigo Vivi <rodrigo.vivi@intel.com>"
>> + -c "Sean Paul <seanpaul@chromium.org>"
>> + -c "dri-devel@lists.freedesktop.org"
>> + -c "intel-gfx@lists.freedesktop.org"
>> + "Dave Airlie <airlied@gmail.com>"
>> +)
>> +
>> +# Recipients for drm-intel-testing updates.
>> +test_request_recipients=(
>> + -c "Jani Nikula <jani.nikula@linux.intel.com>"
>> + -c "Joonas Lahtinen <joonas.lahtinen@linux.intel.com>"
>> + -c "Rodrigo Vivi <rodrigo.vivi@intel.com>"
>> + -c "intel-gfx@lists.freedesktop.org"
>> + "Jari Tahvanainen <jari.tahvanainen@intel.com>"
>> +)
>>
>> # integration configuration
>> integration_config=nightly.conf
>> @@ -1557,11 +1571,7 @@ function dim_update_next_continue
>> prep_pull_mail_signature >> $req_file
>>
>> $DRY $DIM_MUA -s "Updated drm-intel-testing" \
>> - -i $req_file \
>> - -c "$addr_intel_gfx" \
>> - -c "$addr_intel_gfx_maintainer1" \
>> - -c "$addr_intel_gfx_maintainer2" \
>> - "$addr_intel_qa"
>> + -i $req_file "${test_request_recipients[@]}"
>> }
>>
>> function dim_tag_next
>> @@ -1652,12 +1662,7 @@ function dim_pull_request
>>
>> git request-pull $upstream $git_url $tag >> $req_file
>> $DRY $DIM_MUA -s "[PULL] $branch" \
>> - -i $req_file \
>> - -c "$addr_intel_gfx" \
>> - -c "$addr_dri_devel" \
>> - -c "$addr_intel_gfx_maintainer1" \
>> - -c "$addr_intel_gfx_maintainer2" \
>> - "$addr_drm_maintainer"
>> + -i $req_file "${pull_request_recipients[@]}"
>> }
>>
>> function dim_pull_request_next
>> --
>> 2.11.0
>>
--
Jani Nikula, Intel Open Source Technology Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
prev parent reply other threads:[~2017-09-11 8:49 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-08 13:29 [maintainer-tools PATCH 1/5] dim: stop adding Daniel's signed-off-by to driver date updates Jani Nikula
2017-09-08 13:29 ` [maintainer-tools PATCH 2/5] dim: use git format-patch style for *** REMINDERS *** Jani Nikula
2017-09-08 13:29 ` [maintainer-tools PATCH 3/5] dim: remove defaults from pull mail hello/signature Jani Nikula
2017-09-08 23:52 ` Vivi, Rodrigo
2017-09-11 8:50 ` Jani Nikula
2017-09-08 13:30 ` [maintainer-tools PATCH 4/5] dim: reuse pull request signature for drm-intel-testing mails Jani Nikula
2017-09-08 13:30 ` [maintainer-tools PATCH 5/5] dim: update pull and test request recipients Jani Nikula
2017-09-08 13:55 ` Sean Paul
2017-09-11 8:48 ` Jani Nikula [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8760cp4o41.fsf@nikula.org \
--to=jani.nikula@intel.com \
--cc=daniel.vetter@ffwll.ch \
--cc=intel-gfx@lists.freedesktop.org \
--cc=rodrigo.vivi@intel.com \
--cc=seanpaul@chromium.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.